body { 
    background: var(---backgroundColor);
    margin: 0;
}

.container{
    width: 100%;
    background-color: var(---backgroundColor);
    display: flex;
    flex-direction: column;
    padding: 20px; 
    height: 100vh; 

}

.header .mobile_header{
    background-color: var(---backgroundColor);
}
.container .content {
    padding-top: calc(var(--header-height) + 3rem);
    max-width: 520px;
    border-radius: 12px;
    padding: 0;
}
h2 {
    color: var(---colorOnSecondary); 
    margin-bottom: 10px;
}

.progress { display: flex; justify-content: space-between; margin-bottom: 30px; }
.progress-step { flex: 1; text-align: center; padding: 12px 6px; border-bottom: 3px solid #ddd; font-size: 14px; cursor: pointer; color: #6b7280; }
.progress-step.active { border-color: #2563eb; font-weight: bold; color: #2563eb; }


.step-number {
    display: inline-flex;
    width: 26px;
    height: 26px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e5e7eb;
    color: #374151;
    font-size: 13px;
    margin-right: 6px;
}

.step { 
    display: none; 
}

label { 
    display: block; 
    margin: 12px 0 5px; 
    font-size: 14px; 
}
input { 
    width: 100%; 
    padding: 10px; 
    border-radius: 8px; 
    border: 1px solid #ccc; 
}

.actions { 
    display: flex; 
    justify-content: space-between; 
    margin-top: 30px; 
}
button { 
    padding: 10px 18px; 
    border-radius: 8px; 
    border: none; 
    cursor: pointer; 
}
.next { 
    background: #2563eb; 
    color: #fff; 
}
.back { 
    background: #e5e7eb; 
}
.submit { 
    background: var(---colorPrimary); 
    color: black; 
    width: 100%; 
}

.radio-group { display: flex; gap: 20px; margin-top: 10px; }
.radio-group label { display: flex; align-items: center; gap: 6px; font-size: 14px; }

@media screen and (min-width:1024px){
    .container{
        align-items: center;
    }
    .container .content{
        background-color: var(---backgroundColor);
        border-radius: 12px; 
        box-shadow: 0 10px 25px rgba(0,0,0,0.08); 
        padding: 20px; 

    }  
}