.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;
    }
}