/*HEADER*/
.main_header {
    width: 100%;
    padding: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
}

/*PROGRESS BAR*/
.progressbar_container {
    width: 100%;
    height: 25px;
}

.progressbar_container .progressbar {
    color: #FFFFFF;
    font-weight: 900;
    background: var(--primary);
    text-align: right;
    padding-right: 1rem;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

/*BUTTONS PAGES*/
.container {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.container header {
    text-align: center;
}

.container header h1 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
}

.container header h2 {
    font-size: 1.2rem;
    font-weight: 400;
}

/*Form*/
.app_form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.buttons_card {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.radio-option {
    position: relative;
}

.radio-option input[type="radio"] {
    display: none !important;
}

.radio-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f4f4f4;
    border-radius: 6px;
    padding: 20px 30px;
    cursor: pointer;
    transition: 0.3s;
    border: 2px solid transparent;
    width: 120px;
    height: 120px;
    text-align: center;
    font-family: sans-serif;
}

.radio-option label:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.radio-option input[type="radio"]:checked + label {
    border-color: var(--primary);
    background-color: var( --primary-light);
}

.radio-option label i {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.radio-option label b {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.radio-option span {
    font-size: 1rem;
    color: var(--primary-dark);
}

/*FORM BOX*/
.form-box {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 12px;
    width: 100%;
    font-family: sans-serif;
    margin-top: 2rem;
}

.label-title {
    font-size: 14px;
    font-weight: 600;
    color: #7a7a7a;
    margin-bottom: 6px;
}

.input-field {
    width: 100%;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 10px;
    border: none;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.slider-container {
    margin-bottom: 10px;
}

.range-track {
    appearance: none;
    width: 100%;
    height: 10px;
    background: #dcdde1;
    border-radius: 20px;
    outline: none;
}

.range-track::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    background: #0038ff;
    border-radius: 50%;
    cursor: pointer;
    margin-top: -4px;
    border: none;
}

.range-values {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #555;
    margin-bottom: 10px;
}

.footer_form .button {
    display: block;
    padding: .8rem 2rem;
    border-radius: 6px;
    border: none;
    background: var(--primary);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: ease background-color 0.3s;
}

.footer_form .button:hover {
    background-color: var(--primary-dark);
}

/*RESPONSE*/
.table {
    width: 100%;
    max-width: 600px;
    margin: 1rem auto;
    border-collapse: separate;
    border-spacing: 0 0.25rem;
}

.table tr {
    background: var(--secondary);
}

.table td {
    padding: 1rem;
    text-align: left;
}

.table td:first-child {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.table td:last-child {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}


