
/* Extracted <style> blocks */
/* Global styling */
        body, html {
            margin: 0;
            padding: 0;
            font-family: inherit;
            background-color: #f4f4f9;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
        }

        .login-container {
            background-color: #fff;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 400px;
        }

        h2 {
            text-align: center;
            color: #333;
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 15px;
        }

        label {
            font-size: 16px;
            color: #555;
        }

        input[type="text"], input[type="password"] {
            width: 100%;
            padding: 12px;
            border-radius: 5px;
            border: 1px solid #ddd;
            font-size: 16px;
            background-color: #f9f9f9;
        }

            input[type="text"]:focus, input[type="password"]:focus {
                border-color: #4CAF50;
                outline: none;
            }

        button {
            width: 100%;
            padding: 15px;
            background-color: #4CAF50;
            color: white;
            font-size: 16px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

            button:hover {
                background-color: #45a049;
            }

            button:active {
                background-color: #3e8e41;
            }

        .status-message {
            text-align: center;
            margin-top: 15px;
            padding: 10px;
            display: none;
            border-radius: 5px;
            font-weight: bold;
        }

            .status-message.error {
                background-color: #f8d7da;
                color: #721c24;
            }

            .status-message.success {
                background-color: #d4edda;
                color: #155724;
            }
        .brand-logo {
            text-align: center;
            margin-bottom: 20px;
        }

            .brand-logo img {
                max-width: 150px;
            }
        .login-container {
            background-color: white;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 400px;
        }

            .login-container h2 {
                text-align: center;
                margin-bottom: 30px;
                font-size: 28px;
                color: #333;
            }