.quiz-box {
    background: white;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 400px;
    animation: fadeIn 0.5s ease-in-out;
}

input, select {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
    transition: 0.3s ease;
}

input:focus, select:focus {
    border-color: #1035b1;
    box-shadow: 0px 0px 8px rgba(110, 142, 251, 0.5);
    outline: none;
}
