/* Create a new file called content-gate.css and add this code: */

.question-form {
    max-width: 500px;
    margin: 2em auto;
    padding: 20px;
    text-align: center;
    background: #f5f5f5;
    border-radius: 8px;
}

.question-form input {
    padding: 10px;
    margin: 10px 0;
    width: 100%;
    max-width: 200px;
}

.question-form button {
    padding: 10px 20px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.question-form button:hover {
    background: #0056b3;
}
