/* LoginPage.css */ .login-page { min-height: 100vh; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); display: flex; align-items: center; justify-content: center; padding: 20px; } .login-container { background: white; padding: 40px; border-radius: 10px; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); max-width: 400px; width: 100%; } .login-container h2 { text-align: center; color: #333; margin-bottom: 30px; } .form-group { margin-bottom: 20px; } .form-group label { display: block; margin-bottom: 8px; color: #555; font-weight: bold; } .form-group input { width: 100%; padding: 12px; border: 2px solid #ddd; border-radius: 5px; font-size: 1em; transition: border-color 0.3s; } .form-group input:focus { outline: none; border-color: #667eea; } .btn { width: 100%; padding: 12px; background: #667eea; color: white; border: none; border-radius: 5px; font-size: 1.1em; font-weight: bold; cursor: pointer; transition: background 0.3s; } .btn:hover:not(:disabled) { background: #5568d3; } .btn:disabled { opacity: 0.6; cursor: not-allowed; } .error-message { background: #ffebee; color: #d32f2f; padding: 12px; border-radius: 5px; margin-bottom: 20px; text-align: center; } .register-link { text-align: center; margin-top: 20px; color: #666; } .register-link a { color: #667eea; text-decoration: none; font-weight: bold; } .register-link a:hover { text-decoration: underline; }