.error-message {
    width: 400px;
    background: #FEF2F2;
    border: thin solid #FD9BA3;
    box-shadow: 0 4px 6px -2px #0000000D;
    color: #DD0417;
    padding: 1rem;
    border-radius: 1rem;
    position: absolute;
    top: -3rem;
    left: -100%;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 9999;
    transition: left 0.5s ease-in-out;
}
.error-message.show {
    left: 1rem;
}
.auth-content {
    margin: 1rem auto 0;
    max-width: 1000px;
    padding: 3rem 0 1rem;
}
.auth-content .header {
    background: #206A7F0A;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: thin solid #206A7F0A;
    padding: 1rem 2rem;
    margin-bottom: 2rem;
    border-radius: 1.5rem;
}
.auth-content .header .icon-container {
    width: 80px;
    height: 80px;
    background: #FFFFFF;
    display: flex;
    align-items:  center;
    justify-content: center;
    border-radius: 50%;
}
.auth-content .auth-form {
    background: #FFFFFF;
    align-items: center;
    border-top: 10px solid #206A7F;
    border-radius: 1.5rem;
    margin: 1rem 0;
    padding: 2rem;
}
.auth-form .otp {
    display: flex;
    gap: 15px;
    max-width: 350px;
    margin: 0 auto;
    direction: ltr;
}
.auth-form .otp .form-control {
    min-height: 80px;
    text-align: center;
    -moz-appearance: textfield;
    font-size: 30px;
    font-weight: 700;
}
.auth-form .otp .form-control:active, .auth .auth-form .otp .form-control:focus {
    border-color: #206a7f !important
}
.auth-form .timer {
    padding-bottom: 1rem;
    color: #555555;
}
.auth-form .timer {
    padding-top: 0.5em;
}
