   /* 1. Umbraco-like Background */
        body {
            margin: 0;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100vh;
            background-color: #1b264f; /* Umbraco Navy */
            background-image: url("/media/vqgmflx4/umbraco-patterns_blue_full.png");
            background-size: cover;
            font-family: 'Segoe UI', Arial, sans-serif;
        }

        /* 2. Login Card */
        .login-card {
            background: #f5c1bc;
            padding: 40px;
            width: 100%;
            max-width: 400px;
            border-radius: 4px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            text-align: center;
        }

        .login-card h1 {
            color: #283a97;
            margin-bottom: 8px;
            font-size: 24px;
            font-weight: 600;
        }

        .login-card p {
            color: #283a97;
            margin-top: 0;
            margin-bottom: 30px;
            font-size: 14px;
        }

        /* 3. Official Google Button Styling */
        .btn-google {
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #fff;
            color: #283a97;
            border: 1px solid #dadce0;
            border-radius: 4px;
            height: 40px;
            width: 100%;
            cursor: pointer;
            font-family: 'Roboto', sans-serif;
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            transition: background-color 0.2s, box-shadow 0.2s;
            padding: 0 12px;
        }

        .btn-google:hover {
            background-color: #f7fafe;
            box-shadow: 0 1px 3px rgba(60,64,67,0.3);
            border-color: #d2e3fc;
        }

        .btn-google:active {
            background-color: #e8f0fe;
        }

        .google-icon {
            width: 18px;
            height: 18px;
            margin-right: 12px;
        }

        .divider {
            margin: 20px 0;
            border-top: 1px solid #eee;
        }