        body {
            background: url('../../images/bg.jpg') no-repeat center center fixed;
            background-size: cover;
            font-family: Arial, sans-serif;
            color: #333;
            height: 100vh;
            margin: 0;
        }

        .container {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100%;
            text-align: center;
        }

        .login-box {
            background-color: rgba(255, 255, 255, 0.85); /* Semi-transparent white background */
            padding: 40px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            width: 100%;
            max-width: 800px;
        }

        .login-box img {
            width: 100%;
            max-width: 200px;
            margin-bottom: 20px;
        }

        .login-box h2 {
            color: #007bff;
            font-size: 28px;
            margin-bottom: 20px;
        }

        .login-box p {
            color: #555;
            font-size: 16px;
            line-height: 1.6;
        }

        .btn-google {
            display: block;
            width: 100%;
            padding: 12px;
            background-color: #db4437;
            color: #fff;
            text-align: center;
            font-size: 16px;
            border: none;
            border-radius: 4px;
            transition: background-color 0.3s;
            margin-top: 20px;
            text-decoration: none; /* Removes underline */
        }

        .btn-google:hover {
            background-color: #c1351d;
        }

        .footer-text {
            text-align: center;
            margin-top: 20px;
            color: #777;
        }

        .footer-text a {
            color: #007bff;
            text-decoration: none;
        }

        .footer-text a:hover {
            text-decoration: underline;
        }
