.auth-section{
    min-height:80vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#f5f7fb;
    padding:40px 20px;
}

.auth-card{
    width:100%;
    max-width:550px;
    background:#fff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.auth-card h2{
    text-align:center;
    margin-bottom:10px;
    color:#0d6efd;
}

.auth-card p{
    text-align:center;
    color:#666;
    margin-bottom:30px;
}

.form-group{
    margin-bottom:20px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:500;
}

.form-control{
    width:100%;
    padding:12px 15px;
    border:1px solid #ccc;
    border-radius:8px;
    font-size:15px;
}

.form-control:focus{
    outline:none;
    border-color:#0d6efd;
}

.btn-primary{
    width:100%;
    background:#0d6efd;
    color:#fff;
    border:none;
    padding:14px;
    border-radius:8px;
    cursor:pointer;
    font-size:16px;
}

.btn-primary:hover{
    background:#0b5ed7;
}

.auth-footer{
    margin-top:20px;
    text-align:center;
}