<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.multi-step-login {
    /* Parent container style */
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding: 40px 20px; */
    /* background-color: #000;*/
}

.multi-step-login .form-container {
    /* max-width: 400px; */
    width: 100%;
    /* padding: 20px; */
    /* border: 1px solid #444; */
    border-radius: 8px;
    /* background-color: #1a1a1a; */
}

.multi-step-login h2 {
    font-size: 20px;
    margin-bottom: 10px;
    /* color: #ffffff; */
    /* text-align: center; */
}

.multi-step-login input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #666; /* Lighter border color for inputs */
    border-radius: 4px;
    font-size: 16px;
     /* color: #ffffff; */
    /* background-color: #333; */
    box-sizing: border-box;
}

.multi-step-login button {
    padding: 11px 29px;
    background-color: #a13535;
    color: white;
    border: none;
    border-radius: 0;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.24px;
}

.multi-step-login button:hover {
    background-color: #551212; /* Darker shade on hover */
}

.multi-step-login .error-message {
    color: #ff6b6b; /* Red for error messages */
    font-size: 12px;
    margin-bottom: 10px;
    display: none;
}

/* Step specific styles */
.multi-step-login #step-1,
.multi-step-login #step-2,
.multi-step-login #otp-section {
    display: none;
}

.multi-step-login #step-1.active,
.multi-step-login #step-2.active,
.multi-step-login #otp-section.active {
    display: block;
}

.multi-step-login #otp-section input {
    margin-bottom: 20px;
}
.multi-step-login .otp-inputs {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    max-width: 380px;
}

.multi-step-login .otp-inputs input {
    width: 40px; /* Width of each input */
    height: 40px; /* Height of each input */
    text-align: center; /* Center the text */
    font-size: 24px; /* Font size for the digits */
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff; /* Background color */
    color:#000;
    padding: 5px;
}

.multi-step-login .otp-inputs input:focus {
    border-color: #0073aa; /* Change border color on focus */
    outline: none; /* Remove outline */
}
.or-divider {
    display: flex;
    align-items: center;
    text-align: center;
}

.or-divider hr {
    flex-grow: 1;
    border: none;
    border-top: 1px solid #ccc; /* Style of the lines */
    margin: 0 10px; /* Space around the "Or" text */
}

.or-divider span {
    color: #666; /* Color of the text */
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.24px;
    font-weight: 500;
}

.multi-step-login .resend-otp-btn{
    cursor: pointer;
    text-decoration: underline;
    margin: 20px 0;
}

.multi-step-login #loader {
    display: none;
    /* border: 16px solid #f3f3f3; 
    border-top: 16px solid #3498db; 
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: auto; */
    margin: 10px;
}

.multi-step-login #message-display{
 text-align: center;
 margin: 10px;
}

.multi-step-login #back-btn {
    margin-bottom: 10px;
    display: none;
}

.password-wrapper {
    position: relative;
}

.password-wrapper input {
    padding-right: 30px;
}

#togglePassword {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.multi-step-login #toggle-password {
    margin-left: 10px; /* Space between the input and the icon */
}

.multi-step-login .login-back-btn{
 text-align: left;
 cursor: pointer;
 color:#000;
}


.password-wrapper span.toggle-password{
        position: absolute;
        right: 1em;
        top: 1.4em;
        line-height: 1;
        font-family: awb-icons;
        color: #555555;
        font-size: 18px;

}

.password-wrapper span.toggle-password i{
    
    color: #555555;
    font-size: 14px;
    font-weight: 300;

}

.login_buttons_wrapper{
    display: flex;
    align-content: center;
    justify-content: space-between;
    margin-top: 10px;
}

/* Style adjustments for specific screen sizes */
@media (max-width: 600px) {
    .multi-step-login .form-container {
        padding: 15px;
    }

    .multi-step-login h2 {
        font-size: 18px;
    }

    .multi-step-login input,
    .multi-step-login button {
        font-size: 14px;
    }
}
</pre></body></html>