/* style.css */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(120deg, #f6d365, #fda085);
    margin: 0;
    padding: 0;
    color: #333;
}

.container {
    max-width: 800px;
    margin: 50px auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1.2s ease-in-out;
}

h1 {
    text-align: center;
    color: #444;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

label {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 8px;
    display: block;
}

input[type="text"], input[type="email"], input[type="date"], select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    margin-bottom: 20px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="date"]:focus, select:focus {
    border-color: #007bff;
    outline: none;
}

button {
    display: inline-block;
    background: #007bff;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease-in-out, transform 0.3s ease;
}

button:hover {
    background: #0056b3;
    transform: scale(1.05);
}

.multiple-choice {
    margin: 15px 0;
}

.multiple-choice label {
    font-size: 1rem;
    color: #444;
    margin: 10px 0;
    display: block;
    padding-left: 25px;
    position: relative;
    cursor: pointer;
    transition: color 0.3s ease;
}

.multiple-choice input[type="radio"], .multiple-choice input[type="checkbox"] {
    position: absolute;
    left: 0;
    top: 0;
    margin: 8px 0;
    cursor: pointer;
}

.multiple-choice label:hover {
    color: #007bff;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
