:root {
    color-scheme: light;
}

body {
    font-family: Inter, Arial, sans-serif;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: #0f172a;
    font-size: 0.95rem;
    font-weight: 600;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 1rem;
    background: #ffffff;
    padding: 0.9rem 1rem;
    color: #0f172a;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #0f172a;
    box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.08);
}

textarea {
    min-height: 10rem;
    resize: vertical;
}

input[type="checkbox"],
input[type="radio"] {
    width: 1rem;
    height: 1rem;
    border-radius: 0.35rem;
    padding: 0;
}

input[type="file"] {
    padding: 0.75rem;
    background: #f8fafc;
}

.helptext {
    display: block;
    margin-top: 0.5rem;
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.5;
}

.errorlist {
    margin-top: 0.5rem;
    color: #b91c1c;
    font-size: 0.875rem;
    line-height: 1.5;
}

.errorlist ul,
.errorlist li {
    list-style: none;
    margin: 0;
    padding: 0;
}

p {
    margin-bottom: 1rem;
}

.gradient-navy {
    background:
        radial-gradient(circle at top right, rgba(14, 165, 233, 0.18), transparent 24rem),
        radial-gradient(circle at bottom left, rgba(34, 211, 238, 0.14), transparent 24rem),
        linear-gradient(135deg, #081225 0%, #0f1f3d 50%, #132b56 100%);
}

.text-gradient {
    background: linear-gradient(90deg, #7dd3fc 0%, #bae6fd 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.chip-active,
.chip-inactive {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    padding: 0.5rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 700;
    transition: all 0.2s ease;
}

.chip-active {
    background: #2563eb;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.18);
}

.chip-inactive {
    background: #f1f5f9;
    color: #475569;
}

.chip-inactive:hover {
    background: #e2e8f0;
    color: #0f172a;
}
