/* Custom login styles that Bootstrap doesn't handle well */

/* Custom gradient background */
body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

/* Custom login card styling */
.login-card {
    border: none;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-radius: 20px;
}

/* Custom button hover effect */
.btn-primary:hover {
    transform: translateY(-2px);
    transition: transform 0.2s ease;
}
