.auth-section{
    min-height:calc(100vh - 160px);
    display:flex;
    align-items:center;
    padding:60px 0;
    background:#f4f8ff;
}

.auth-wrapper{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
}

.auth-left{
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    color:#fff;
    justify-content:center;
    align-items:center;
    padding:60px;
}

.auth-left img{
    max-width:280px;
}

.auth-content{
    text-align:center;
}

.auth-content h2{
    font-size:34px;
    font-weight:700;
    margin-bottom:20px;
}

.auth-content p{
    font-size:17px;
    opacity:.9;
}

.auth-form{
    padding:60px;
}

.auth-form h2{
    font-size:34px;
    font-weight:700;
    margin-bottom:10px;
}

.auth-form p{
    color:#64748b;
    margin-bottom:35px;
}

.form-control{
    height:55px;
    border-radius:12px;
    border:1px solid #dbe3ef;
}

.form-control:focus{
    border-color:#2563eb;
    box-shadow:0 0 0 .2rem rgba(37,99,235,.15);
}

.btn-primary{
    height:55px;
    border-radius:12px;
    font-weight:600;
}

@media (max-width:991px){

    .auth-form{
        padding:40px 30px;
    }

}