/* static/css/login.css */

body {
    background-color: #f8f9fa; /* 科技淺灰背景 */
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    width: 100%;
    max-width: 400px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.login-header {
    background: linear-gradient(135deg, #0d6efd 0%, #0dcaf0 100%);
    color: white;
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px 12px 0 0;
}