  body {
                font-family: 'Roboto', sans-serif;
                background-color: #F4E2C6; /* Soft yellow background */
                background-image: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" xmlns="http://www.w3.org/2000/svg"><rect width="100%" height="100%" fill="url(%23lg)"/><defs><linearGradient id="lg" x1="0" x2="0" y1="0" y2="1"><stop stop-color="%23f4e2c6" offset="0"/><stop stop-color="%23d4c295" offset="1"/></linearGradient></defs></svg>'); /* Subtle gradient */
                margin: 0;
                display: flex;
                justify-content: center;
                align-items: center;
                min-height: 100vh;
            }
            .container {
                background-color: #ffffff;
                border-radius: 8px;
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
                padding: 40px;
                width: 350px;
                text-align: center;
            }
            h1 {
                color: #333;
                margin-bottom: 20px;
            }
            form {
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            input[type="text"],
            input[type="email"],
            button {
                padding: 12px;
                margin: 10px 0;
                width: 100%;
                border: 1px solid #ccc;
                border-radius: 5px;
                box-sizing: border-box;
                font-size: 16px;
                transition: border-color 0.3s;
            }
            input[type="text"]:focus,
            input[type="email"]:focus {
                border-color: #0056b3;
                outline: none;
            }
            button {
                background-color: #0056b3;
                color: #ffffff;
                cursor: pointer;
                border: none;
                border-radius: 5px;
                font-weight: 500;
                text-transform: uppercase;
                transition: background-color 0.3s;
            }
            button:hover {
                background-color: #004494;
            }
            .terms-modal {
                display: none;
                position: fixed;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                background-color: #fff;
                border-radius: 10px;
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
                padding: 20px;
                width: 80%;
                max-width: 500px;
                z-index: 1000;
                text-align: left;
            }
            .terms-modal-title {
                font-weight: bold;
                margin-bottom: 10px;
            }
            .close-btn {
                position: absolute;
                top: 10px;
                right: 10px;
                cursor: pointer;
                font-size: 18px;
                border: none;
                background: none;
            }
