/* Login */
.login-container { display: flex; justify-content: center; align-items: center; padding: 50px 20px; }
.login-container ul { list-style-type: none; }
.login-form {
    background: white; padding: 30px; border-radius: 15px; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); width: 100%; max-width: 400px; 
    display: flex; flex-direction: column; gap: 20px;
}
.login-form h2 { margin: 0; color: #4a4a4a; text-align: center; }
.login-form .form-group { display: flex; flex-direction: column; gap: 8px; }

.btn-mehet {
    background-color: var(--form-btn); color: white; padding: 12px; border: none; 
    border-radius: 8px; font-weight: bold; cursor: pointer; font-size: 16px; transition: background 0.3s;
}
.btn-mehet:hover { background-color: var(--nav-hover-bg); }



