.login-container { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); padding: 24px; } .login-card { width: 100%; max-width: 650px; border-radius: 8px; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15); } .login-header { text-align: center; margin-bottom: 32px; .login-logo { width: 80px; height: auto; margin-bottom: 16px; } h1 { margin: 0 0 8px 0; font-size: 24px; font-weight: 600; color: #333; } p { margin: 0; color: #666; font-size: 14px; } } .login-form { display: grid; grid-template-columns: auto 1fr; gap: 12px 16px; align-items: center; margin-bottom: 16px; label { font-weight: 500; } } .login-footer { margin-top: 24px; text-align: center; p { margin: 0; font-size: 12px; color: #999; } }