/* ===================================
   LOGIN PAGE ONLY - Beautiful Dark Theme
   =================================== */

body.login-page { margin: 0; padding: 0; min-height: 100vh; background: linear-gradient(135deg, #0a1628 0%, #1a2332 50%, #0d1b2a 100%); font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.particles { position: absolute; width: 100%; height: 100%; overflow: hidden; z-index: 1; }
.particle { position: absolute; width: 2px; height: 2px; background: rgba(255, 255, 255, 0.5); border-radius: 50%; animation: float 20s infinite linear; }
@keyframes float { 0%, 100% { transform: translateY(0) translateX(0); opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { transform: translateY(-100vh) translateX(100px); opacity: 0; } }
.login-container { background: rgba(255, 255, 255, 0.95); border-radius: 20px; padding: 50px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); max-width: 400px; width: 90%; position: relative; z-index: 10; backdrop-filter: blur(10px); }
.login-logo { text-align: center; margin-bottom: 30px; }
.login-logo img { animation: logoFloat 3s ease-in-out infinite; }
@keyframes logoFloat { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-10px); } }
.login-title { text-align: center; color: #1a2332; font-size: 32px; font-weight: 700; margin: 0 0 10px 0; }
.login-subtitle { text-align: center; color: #5f6368; font-size: 16px; margin: 0 0 40px 0; }
.login-form { width: 100%; }
.form-group { margin-bottom: 25px; }
.form-group label { display: block; color: #3c4043; font-size: 14px; font-weight: 500; margin-bottom: 8px; }
.form-group input { width: 100%; padding: 12px 16px; border: 2px solid #e0e0e0; border-radius: 8px; font-size: 16px; transition: all 0.3s ease; box-sizing: border-box; }
.form-group input:focus { outline: none; border-color: #1a73e8; box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1); }
.login-button { width: 100%; padding: 14px; background: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%); color: white; border: none; border-radius: 8px; font-size: 16px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; }
.login-button:hover { background: linear-gradient(135deg, #1557b0 0%, #1a73e8 100%); transform: translateY(-2px); box-shadow: 0 8px 16px rgba(26, 115, 232, 0.3); }
.error-message, .field-error { background: #fef3f2; border-left: 4px solid #dc3545; color: #dc3545; padding: 12px; border-radius: 4px; margin-bottom: 20px; font-size: 14px; }
@media (max-width: 768px) { .login-container { padding: 30px 20px; } .login-title { font-size: 24px; } }
