/*==================================================
AUTH WRAPPER
==================================================*/

.auth-wrapper{
    max-width:700px;
    margin:60px auto;
    padding:20px;
}

.auth-right{
    width:100%;
    display:flex;
    justify-content:center;
}

/*==================================================
AUTH CARD
==================================================*/

.auth-card{
    width:100%;
    max-width:650px;
    background:#fff;
    border-radius:20px;
    padding:45px;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
}

.auth-card h2{
    font-size:42px;
    font-weight:700;
    color:#111;
    margin-bottom:10px;
    text-align:center;
}

.auth-card p,
.auth-subtitle{
    font-size:16px;
    color:#666;
    margin-bottom:35px;
    text-align:center;
    line-height:1.7;
}

/*==================================================
FORM
==================================================*/

.auth-form{
    margin-top:25px;
}

.auth-field,
.form-group{
    margin-bottom:22px;
}

.auth-field label,
.form-group label{
    display:block;
    width:100%;
    margin-bottom:8px;
    font-size:15px;
    font-weight:600;
    color:#222;
}

.auth-field input,
.form-group input,
.auth-field textarea,
.form-group textarea,
.auth-field select,
.form-group select{
    width:100%;
    border:1px solid #ddd;
    border-radius:12px;
    background:#fafafa;
    font-size:16px;
    transition:.3s;
    font-family:inherit;
}

.auth-field input,
.form-group input,
.auth-field select,
.form-group select{
    height:56px;
    padding:0 18px;
}

.auth-field textarea,
.form-group textarea{
    min-height:150px;
    padding:18px;
    resize:vertical;
}

.auth-field input:focus,
.form-group input:focus,
.auth-field textarea:focus,
.form-group textarea:focus,
.auth-field select:focus,
.form-group select:focus{
    outline:none;
    background:#fff;
    border-color:#ef3f3f;
    box-shadow:0 0 0 4px rgba(239,63,63,.12);
}

/*==================================================
OPTIONS
==================================================*/

.auth-options{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin:25px 0;
    flex-wrap:wrap;
    gap:15px;
}

.auth-checkbox{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:15px;
    color:#555;
}

.auth-checkbox label{
    display:flex;
    align-items:center;
    gap:10px;
    cursor:pointer;
    margin:0;
}

.auth-checkbox input{
    width:18px;
    height:18px;
}

.auth-link{
    color:#ef3f3f;
    font-weight:600;
    text-decoration:none;
}

.auth-link:hover{
    text-decoration:underline;
}

/*==================================================
BUTTON
==================================================*/

.auth-btn{
    width:100%;
    height:56px;
    border:none;
    border-radius:12px;
    background:#ef3f3f;
    color:#fff;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.auth-btn:hover{
    background:#d92d2d;
    transform:translateY(-2px);
}

/*==================================================
FOOTER
==================================================*/

.auth-footer{
    margin-top:30px;
    text-align:center;
    font-size:15px;
    color:#666;
}

.auth-footer a{
    color:#ef3f3f;
    font-weight:700;
    text-decoration:none;
}

.auth-footer a:hover{
    text-decoration:underline;
}

/*==================================================
ALERTS
==================================================*/

.auth-alert{
    padding:16px 20px;
    margin-bottom:25px;
    border-radius:12px;
    font-size:15px;
    line-height:1.6;
}

.auth-alert ul{
    margin:0;
    padding-left:18px;
}

.auth-alert li{
    margin:5px 0;
}

.auth-alert-success{
    background:#eefbf1;
    border:1px solid #9be3ad;
    color:#187d33;
}

.auth-alert-error{
    background:#fff2f2;
    border:1px solid #ffcaca;
    color:#c62828;
}

.auth-alert-warning{
    background:#fff8e6;
    border:1px solid #ffd666;
    color:#8a5a00;
}

/*==================================================
MOBILE
==================================================*/

@media(max-width:768px){

.auth-wrapper{
    margin:35px auto;
    padding:15px;
}

.auth-card{
    padding:25px;
}

.auth-card h2{
    font-size:32px;
}

.auth-options{
    flex-direction:column;
    align-items:flex-start;
}

.auth-btn{
    height:54px;
}

}