        body {
            background: url('https://www.transparenttextures.com/patterns/snow.png') #0b3d91; /* Snowy texture */
            color: #fff; /* White text for contrast */
            font-family: 'Courier New', Courier, monospace; /* Cozy holiday font */
            text-align: center;
            margin: 0;
            padding: 0;
        }
        h1 {
            font-size: 3em;
            color: #ff4500; /* Christmas red */
            text-shadow: 3px 3px 10px #ffd700; /* Golden glow */
            margin-top: 20px;
        }
        a {
            color: #ff4500; /* Christmas red */
            text-shadow: 3px 3px 10px #ffd700; /* Golden glow */
            margin-top: 20px;
        }
        .container {
            background-color: rgba(255, 255, 255, 0.1); /* Frosted glass effect */
            border: 2px solid #ffd700; /* Golden border */
            border-radius: 12px;
            padding: 20px;
            display: inline-block;
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
            margin-top: 20px;
        }
        input, button {
            font-size: 1.5em;
            padding: 10px 15px;
            margin: 10px 0;
            border-radius: 8px;
            border: none;
        }
        input {
            width: 300px;
            border: 2px solid #ffd700; /* Golden border */
            background-color: #fff; /* White input field */
            color: #0b3d91; /* Dark blue text */
        }
        button {
            background-color: #32cd32; /* Bright Christmas green */
            color: #fff;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }
        button:hover {
            background-color: #228b22; /* Darker green */
            transform: scale(1.1);
        }
        p {
            font-size: 1.5em;
            margin-top: 15px;
        }
        .decorations {
            margin: 20px 0;
        }
        .decorations img {
            width: 80px;
            height: auto;
            margin: 0 15px;
        }
        footer {
            margin-top: 30px;
            font-size: 1em;
            color: #ffdf00; /* Golden text */
        }
