body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #3a1c71 0%, #d76d77 50%, #ffaf7b 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color: #ffffff;
    border-radius: 25px;
    box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.2);
    width: 450px;
    padding: 30px;
    animation: fadeIn 1s ease-out, scaleUp 0.5s ease-in-out;
    font-size: 16px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleUp {
    from {
        transform: scale(0.95);
    }
    to {
        transform: scale(1);
    }
}

.section {
    margin-bottom: 25px;
}

h3 {
    font-weight: 600;
    font-size: 20px;
    color: #3a1c71;
    margin-bottom: 15px;
}

.options {
    display: flex;
    flex-direction: column;
}

.options label {
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 15px;
    color: #555555;
}

.input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid #dddddd;
    font-size: 15px;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.input:focus {
    border-color: #3a1c71;
    box-shadow: 0 0 8px rgba(58, 28, 113, 0.2);
    outline: none;
}

input[type="radio"], input[type="checkbox"] {
    margin-right: 8px;
}

input[type="radio"]:checked, input[type="checkbox"]:checked {
    accent-color: #3a1c71;
}
