 body {
            background-color: #f8f9fa;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
        }
        .login-container, .maintenance-container {
            max-width: 400px;
            width: 100%;
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            display: none;
        }
        .login-header, .maintenance-header {
            text-align: center;
            margin-bottom: 20px;
        }
        .login-header h2, .maintenance-header h2 {
            margin: 10px 0 0;
        }
        .login-logo, .maintenance-logo {
            max-width: 180px;
            margin: 0 auto 15px;
            display: block;
        }
        .btn-primary {
            width: 100%;
        }
        .maintenance-icon {
            font-size: 3.5rem;
            color: #f8bb2c;
            margin-bottom: 15px;
        }
        .maintenance-message {
            margin: 20px 0;
            text-align: center;
            color: #5a5a5a;
        }
        .maintenance-eta {
            text-align: center;
            font-size: 0.9rem;
            color: #6c757d;
            margin-top: 20px;
        }
        .maintenance-container {
            max-width: 450px;
        }
        .maintenance-status {
            padding: 10px;
            background-color: #f8f9fa;
            border-radius: 4px;
            margin-top: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .status-indicator {
            width: 12px;
            height: 12px;
            background-color: #f8bb2c;
            border-radius: 50%;
            display: inline-block;
            margin-right: 8px;
            animation: blink 1.5s infinite;
        }
        @keyframes blink {
            0% { opacity: 0.4; }
            50% { opacity: 1; }
            100% { opacity: 0.4; }
        }