.form__inputs-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 60px;
}

.form__input {
    border-bottom: 0.5px solid rgba(29, 29, 27, 1);
    font-weight: 400;
    font-size: 16px;
}
.form__input > input{
    width: 100%;
}

.form__input:last-child,
.form__input:nth-child(2) {
    grid-column: 1/3;
}

.form__checkbox-text {
    color: #1D1D1B;
    text-align: left;
    font-family: 'Graphik', sans-serif;
    font-size: 10px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.404px;
}

.form__title {
    color: #1D1D1B;
    font-family: 'Graphik', sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 20.721px;
}

.form__desc {
    color: #1D1D1B;
    font-family: 'Graphik', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
}

@media(max-width: 480px) {
    .form__inputs-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Form preguntas */
.box {
    display: none;
}
.box.active {
    display: block;
}
.form-preguntas legend {
    margin-bottom: 20px;
    line-height: 1.2;
}
.form-preguntas .box input[type='radio'],
.form-preguntas .box-footer input[type='radio'] {
    display: none;
}
.form-preguntas .box label:not(.input-box label),
.form-preguntas .box-footer label:not(.input-box label) {
    background-color: var(--primary-color-dark);
    color: white;
    font-size: 20px;
    font-family: var(--font-primary);
    border-radius: 5px;
    cursor: pointer;
    padding: 16px 10px;
    margin-bottom: 10px;
    text-align: center;
    width: 100%;
    transition: background 250ms ease-in-out;
    position: relative;
}
.contact-form .form__title,
.contact-form .form__desc {
    display: block;
}