
        /* Általános stílusok */
        body {
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background: #121212;
            color: #fff;
            text-align: center;
        }

        h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #00ff99;
            text-transform: uppercase;
        }

        form {
            background: #1e1e1e;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 4px 10px rgba(0, 255, 153, 0.1);
            width: 100%;
            max-width: 400px;
        }

        label {
            font-size: 1.2rem;
            display: block;
            margin-bottom: 8px;
            text-align: left;
            color: #b0b0b0;
        }

        input {
            width: 100%;
            padding: 12px;
            margin: 10px 0;
            border: 2px solid #444;
            border-radius: 8px;
            background-color: #333;
            color: #fff;
            font-size: 1rem;
            outline: none;
        }

        input:focus {
            border-color: #00ff99;
        }

        input[type="submit"] {
            background-color: #00ff99;
            color: #121212;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }

        input[type="submit"]:hover {
            background-color: #00cc7a;
        }

        p {
            margin-top: 20px;
            font-size: 1rem;
            color: #b0b0b0;
        }

        a {
            color: #00ff99;
            text-decoration: none;
            font-weight: bold;
        }

        a:hover {
            text-decoration: underline;
        }

        .container {
            text-align: center;
            max-width: 500px;
            width: 100%;
        }

        .input-group {
            margin-bottom: 20px;
        }
		
		.form-accept {
			margin-top: 1em;
			font-size: 0.9rem;
			color: #444;
		}
		
		.form-accept a {
			color: #0066cc;
			text-decoration: underline;
		}
		
		.accept-label {
			display: flex;
			align-items: center;
			gap: 0.5em;
			line-height: 1.4;
		}
		
		.accept-label input[type="checkbox"] {
			width: 16px;
			height: 16px;
			accent-color: #0078d7;
			cursor: pointer;
		}
    