/* Background stays consistent */
body {
    background: linear-gradient(to right, #74ebd5, #9face6);
}

/* Container */
.trial-application {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 2rem 1rem;
}

/* Card */
.trial-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    padding: 2.5rem;
    width: 100%;
    max-width: 520px;
    text-align: center;
}

/* Title */
.trial-card h1 {
    font-size: 1.6rem;
    color: #1e2d3a;
    margin-bottom: 0.3rem;
}

.trial-card h2 {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

/* Step indicator */
.step-indicator {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 1.5rem;
}

/* Progress bar */
.progress-bar {
    width: 100%;
    height: 6px;
    background: #eee;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.progress-fill {
    height: 100%;
    background: #6c63ff;
    width: 0%;
    transition: width 0.3s ease;
}

/* Form fields */
.form-group {
    text-align: left;
    margin-bottom: 1.2rem;
}

.form-group > label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: #1e2d3a;
    line-height: 1.4;
}

/* Inputs */
input:not([type="radio"]):not([type="checkbox"]), select, textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #6c63ff;
    box-shadow: 0 0 0 2px rgba(108, 99, 255, 0.1);
    outline: none;
}

/* Radio + Checkbox choices */
.form-group ul {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0;
}

.form-group li {
    margin-bottom: 0.75rem;
}

.form-group li label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fafafa;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    color: #333;
    line-height: 1.35;
}

.form-group li label:hover {
    border-color: #6c63ff;
    background: #f5f3ff;
}

input[type="radio"],
input[type="checkbox"] {
    width: auto;
    min-width: 18px;
    height: 18px;
    margin: 0.1rem 0 0;
    accent-color: #6c63ff;
    cursor: pointer;
}

.form-group li:has(input[type="radio"]:checked) label,
.form-group li:has(input[type="checkbox"]:checked) label {
    border-color: #6c63ff;
    background: #f0efff;
    box-shadow: 0 0 0 2px rgba(108, 99, 255, 0.08);
}

/* Button */
.trial-btn {
    background: #6c63ff;
    color: white;
    padding: 14px;
    width: 100%;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-top: 1rem;
}

.trial-btn:hover {
    background: #574fd6;
    transform: translateY(-1px);
}

/* Errors */
.errorlist {
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: 4px;
}

/* Mobile */
@media (max-width: 600px) {
    .trial-card {
        padding: 2rem 1.5rem;
    }
}