.login-section{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:120px 20px 80px;
    background:#fff7fb;
}

.login-box{
    width:100%;
    max-width:450px;
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.login-box h2{
    text-align:center;
    font-size:34px;
    color:#222;
    margin-bottom:10px;
}

.login-box p{
    text-align:center;
    color:#666;
    margin-bottom:30px;
}

.form-group{
    margin-bottom:20px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
    color:#333;
}

.form-group input{
    width:100%;
    height:55px;
    border:1px solid #ddd;
    border-radius:12px;
    padding:0 18px;
    font-size:16px;
    outline:none;
    transition:.3s;
}

.form-group input:focus{
    border-color:#E91E63;
}

.login-btn{
    width:100%;
    height:55px;
    border:none;
    border-radius:50px;
    background:linear-gradient(135deg,#E91E63,#C2185B);
    color:#fff;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.login-btn:hover{
    transform:translateY(-2px);
}

.register-link{
    text-align:center;
    margin-top:25px;
}

.register-link a{
    color:#E91E63;
    text-decoration:none;
    font-weight:600;
}

.register-link a:hover{
    text-decoration:underline;
}