@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

body {
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: 'Inter', Arial, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#currentDate {
    margin-bottom: 24px;
    font-size: 1rem;
    color: #64748b;
    text-align: center;
}

.container {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px 0 rgba(60, 72, 100, 0.08);
    padding: 40px 32px 32px 32px;
    max-width: 400px;
    width: 100%;
    margin: 32px auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

h2 {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

input[type="text"],
input[type="email"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    background: #f6f8fb;
    font-size: 1rem;
    transition: border 0.2s, box-shadow 0.2s;
    outline: none;
    margin-bottom: 0;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 2px #6366f133;
}

select {
    appearance: none;
    background: #f6f8fb url('data:image/svg+xml;utf8,<svg fill="%236366f1" height="20" viewBox="0 0 20 20" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M7.293 7.293a1 1 0 011.414 0L10 8.586l1.293-1.293a1 1 0 111.414 1.414l-2 2a1 1 0 01-1.414 0l-2-2a1 1 0 010-1.414z"/></svg>') no-repeat right 14px center/18px 18px;
    font-size: 1rem;
    color: #334155;
}

textarea {
    resize: vertical;
    min-height: 80px;
    font-size: 1rem;
}

.mcq-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mcq-label {
    font-weight: 500;
    color: #475569;
    margin-bottom: 4px;
}

.mcq-options {
    display: flex;
    gap: 18px;
}

.mcq-options label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1rem;
    color: #334155;
    cursor: pointer;
    position: relative;
}

input[type="radio"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    background: #f6f8fb;
    transition: border 0.2s, box-shadow 0.2s;
    margin-right: 6px;
    position: relative;
}

input[type="radio"]:checked {
    border: 6px solid #6366f1;
    background: #fff;
}

input[type="radio"]:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 2px #6366f133;
}

button[type="submit"] {
    width: 100%;
    padding: 14px 0;
    border: none;
    border-radius: 10px;
    background: linear-gradient(90deg, #6366f1 0%, #60a5fa 100%);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 4px 16px 0 rgba(99, 102, 241, 0.10);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    margin-top: 8px;
}

button[type="submit"]:hover {
    background: linear-gradient(90deg, #60a5fa 0%, #6366f1 100%);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 24px 0 rgba(99, 102, 241, 0.18);
}
