body {
    font-family: Arial, sans-serif;
    background-color: #FAFAFA;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

h2{
    color:#c70000;
}
.login-form {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
}
.login-form h2 {
    text-align: center;
    margin-bottom: 20px;
}
.login-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}
.login-form input[type="text"] {
    width: 280px;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.login-form input[type="text"]#password,
.login-form input[type="password"] {
    width: 280px;
    padding: 10px 38px 10px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    position: relative;
    margin-bottom: unset !important;
}


.login-form input[type="text"]:focus,
.login-form input[type="password"]:focus {
    border-color: #C70000;
    outline: none;
}

.login-form input[type="password"]::-ms-reveal {
     display: none; 
}

.login-form .form-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.login-form .form-group #display-icon-area{
    position: absolute;
    transform: translateX(270px);
    display: flex;
    align-content: center;
}

.login-form .form-group .display-icon{
    width: 1.5rem;
    display: unset;
}

.login-form .form-group .display-icon.none{
    display: none;
}

#login-btn {
    width: 250px;
    padding: 10px;
    background-color: #C70000;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-bottom: 20px;
    text-align: center;
}
#login-btn:hover {
    background-color: #a00000;
}
#validate-area{
    height:80px;
    color: #C70000;
}
.submit-area{
    display: flex;
    align-items: center;
    justify-content: center;
}

.input-error{
    border-color: #C70000 !important;
}