/* assets/css/login.css */
body {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    font-family: 'Segoe UI', sans-serif;
}

.login-card {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.form-control:focus {
    border-color: #2575fc;
    box-shadow: 0 0 0 0.25rem rgba(37, 117, 252, 0.25);
}

.btn-primary {
    background: linear-gradient(to right, #6a11cb, #2575fc);
    border: none;
    padding: 10px;
    font-weight: 600;
}

.btn-google {
    background: #fff;
    color: #757575;
    border: 1px solid #ddd;
}

.forgot-password {
    font-size: 0.9rem;
    color: #2575fc;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

.logo {
    width: 60px;
    margin-bottom: 20px;
}