@import url('general.css');

/* PASSWORD RECOVERY PAGE */

.password_resend_alert{
    border: 1px solid #fbc02d; 
    background: #fff9c4;
    padding: 20px 30px;
    border-radius: 5px;
    opacity: 0;
    transition: all 0.2s;
}
.password_resend_alert_active{
    transform: translateY(0);
    opacity: 1;
}

.password_resend_alert h1{
    font-size: 18px;
    font-weight: 700;
    color: #f57f17;
    font-family: 'Roboto';
}
.password_resend_alert_error{
    border: 1px solid #ee4c4c;
    background: #ff969651;
}
.password_resend_alert_error h1{
    color: rgb(109, 0, 0);
}
.password_body {
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.password_content_body{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin: auto auto;
    padding: 20px 30px;
    border-radius: 10px;
    background: white;
    text-align: center;
    gap: 20px;
    font-family: 'Roboto';
}

.password_body h1 {
    font-size: 24px;
    font-weight: 800;
}

.password_body h2 {
    font-size: 18px;
    font-weight: 600;
}

.password_email_form {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
    gap: 20px;
}

.text_field_password {
    display: flex;
    flex-direction: column;
    width: 100%; 
    padding: 0;
    box-sizing: border-box;
    font-size: 16px;
    margin: 0 auto;
}

.input_email {
    width: 100%; 
    padding: 10px;
    margin-top: 5px; 
    box-sizing: border-box; 
}

.password_email_form_btn {
    width: auto !important;
    padding: 10px 20px !important;
}
