:root {
    --accent: #a6b0d2;

    --green: #b8fedb;
    --greenHover: #77ffbb;
    --muted: #e6eef3;
    --text: #002f68;
}
html, body{
    scroll-behavior: smooth;
    scroll-padding: 30px;
}
body {
    /*font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;*/
    margin: 0;
    background: #f7fafc;
    color: var(--text);
    height: fit-content;
    min-height: 100svh;

}


#formSection{




}
.container {
   width: 100%;
    /*height: 300px;*/
    height: fit-content;
    /*max-width: 850px;*/
    /*max-width: 90rem;*/
    border-radius: 3rem;
    margin: 0 auto;
    padding: 90px 100px;
    /*padding: 5rem;*/
    display: flex;
    flex-direction: column;
    background: #fff;
    /*border-radius: 16px;*/
    /*height: 100vh;*/
    /*height: 400px;*/
}

.card {

    /*max-width: 1160px;*/
    flex: 1;
    display: flex;
    flex-direction: column;
    /*border-radius: 10px;*/
}
.progress {
    height: 8px;
    background: var(--muted);
    border-radius: 999px;
    overflow: hidden;
}
.progress__bar {
    height: 100%;
    width: 0;
    background: var(--accent);
    transition: width .3s ease;
}
.step {
    flex: 1;
    display: none;
    flex-direction: column;
    padding: 40px 0;
    animation: fade .2s ease;
}
.step.active {
    display: flex;
}

@media (max-width: 1000px) {
    .container{
        padding: 40px;
    }
}

@media (max-width: 500px) {
    .container{
        padding: 40px 15px 40px 15px;
    }
    .step{
        padding: 30px 0;
    }
}


@keyframes fade {
    from {opacity:.6; transform:translateY(2px)}
    to {opacity:1; transform:none}
}
h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px;
}
.sub {
    font-size: 14px;
    color: #475569;
    margin: 0 0 20px;
}
input, select {
    width: 100%;
    font-size: 16px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    outline: none;
}
input:focus, select:focus {
    border-color: #94a3b8;
    box-shadow: 0 0 0 4px rgba(47,191,113,.15);
}
.options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.option-btn {
    padding: 14px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
}
.option-btn.selected {
    border-color: var(--accent);
    background: #e7e9f0;
}
.hint {
    font-size: 12px;
    color: #64748b;
    margin-top: 6px;
}
.sticky-btn {
    /*position: sticky;*/
    /*bottom: 0;*/
    width: 100%;
    margin: 0 auto;
    background-color: var(--green);
    color: var(--text);
    font-size: 18px;
    font-weight: bold;
    border: none;
    padding: 16px;
    cursor: pointer;
    border-radius: 10px;
    transition: 0.3s ease opacity, 0.3s ease background-color;
}
.sticky-btn:hover {
    background-color: var(--greenHover);
}
.disabled-btn {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}