/* Login Page Specific Styles */

body.login-page { 
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 100vh; 
    display: flex; 
    align-items: center; 
    justify-content: center;
}

.login-container { 
    background: white; 
    padding: 40px; 
    border-radius: 10px; 
    box-shadow: 0 15px 35px rgba(0,0,0,0.1); 
    width: 400px; 
    text-align: center;
}

.login-logo { 
    color: #333; 
    margin-bottom: 30px; 
    font-size: 28px; 
    font-weight: 600; 
}

.login-form .form-group {
    text-align: left;
}

.demo-info { 
    margin-top: 20px; 
    padding: 15px; 
    background: #f7fafc; 
    border-radius: 6px; 
    font-size: 14px; 
    color: #4a5568;
}

.error-display { 
    color: #e53e3e; 
    margin-top: 15px; 
    font-size: 14px; 
}
