
        body {
            font-family: sans-serif;
            background-color: #f4f4f4;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            margin: 0;
        }

        .login-container {
            background-color: #fff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            width: 400px;
            max-width: 90%;
        }

        h2 {
            text-align: center;
            color: #333;
            margin-bottom: 10px;
        }

        .form-group {
            margin-bottom: 10px;
        }

        label {
            display: block;
            margin-bottom: 5px;
            color: #555;
        }

        input[type="email"] {
            width: calc(100% - 22px);
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            box-sizing: border-box;
            font-size: 16px;
        }

        button {
            background: linear-gradient(to right, #ff3300 0%, #ff9d00 100%);
            color: white;
            padding: 12px 20px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
            width: 100%;
        }

        button:hover {
            background: linear-gradient(to left, #ff3300 0%, #ff9d00 100%);
        }

        .options {
            margin-top: 20px;
            text-align: center;
            font-size: 14px;
            color: #777;
        }

        .options a {
            color: #007bff;
            text-decoration: none;
        }

        .options a:hover {
            text-decoration: underline;
        }

        @media (max-width: 800px) {
            .login-container {
                padding: 20px;
            }

            h2 {
                font-size: 24px;
            }

            .form-group {
                margin-bottom: 15px;
            }

            input[type="email"],
            button {
                font-size: 14px;
                padding: 10px 15px;
            }

            .options {
                font-size: 12px;
            }
        }
    