body{
    background:#f7f8ff;
    font-family:'Segoe UI',sans-serif;
    margin:0;
    padding:0;
}

.logo{
    font-size:32px;
    font-weight:800;
    color:#6c3bff;
    margin-bottom:20px;
}

.login-section{
    min-height:100vh;
}

.login-left{
    display:flex;
    align-items:center;
    justify-content:center;
    padding:50px;
    background:#f7f8ff;
}

.login-card{
    width:100%;
    max-width:500px;
    background:white;
    padding:40px;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.login-card h2{
    font-weight:800;
    margin-bottom:10px;
}

.subtitle{
    color:#666;
    margin-bottom:30px;
}

.form-control{
    height:55px;
    border-radius:12px;
}

.login-btn{
    width:100%;
    height:55px;
    border:none;
    border-radius:12px;
    background:#6c3bff;
    color:white;
    font-weight:600;
}

.login-btn:hover{
    background:#5a2df0;
}

.login-right{
    background:
    linear-gradient(
        rgba(108,59,255,.4),
        rgba(108,59,255,.4)
    ),
    url('https://images.unsplash.com/photo-1493225457124-a3eb161ffa5f');

    background-size:cover;
    background-position:center;
}

.register-link{
    text-align:center;
    margin-top:20px;
}

.register-link a{
    color:#6c3bff;
    text-decoration:none;
    font-weight:600;
}

.forgot-link{
    color:#6c3bff;
    text-decoration:none;
    font-weight:600;
}

.password-wrapper{
    position:relative;
}

.password-wrapper input{
    padding-right:55px;
}

.toggle-password{
    position:absolute;
    right:18px;
    top:50%;
    transform:translateY(-50%);
    cursor:pointer;
    font-size:20px;
    z-index:10;
}

.password-rules{
    margin-top:12px;
    background:#f8f9ff;
    border-radius:12px;
    padding:15px;
    font-size:14px;
}

.password-rules div{
    margin-bottom:8px;
}

.valid{
    color:#28a745;
    font-weight:600;
}

.invalid{
    color:#dc3545;
    font-weight:600;
}