.booktransfer-card {
    padding: 32px;
    border-radius: var(--main-chamfer);
    background: #fff5df;
}

.booktransfer-card__head {
    margin-bottom: 24px;
}

.booktransfer-card__head h2 {
    margin: 0;
    color: #1f354f;
    font-size: 32px;
    line-height: 1.2;
}

.booktransfer-form {
    gap: 24px;
}

.booktransfer-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.booktransfer-form .form-group {
    margin: 0;
}

.booktransfer-form select {
    width: 100%;
    height: 72px;
    border: none;
    border-radius: 16px;
    background: #fff;
    color: #1f354f;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
    padding: 0 72px 0 26px;
}

.booktransfer-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    background-image:
        linear-gradient(45deg, transparent 50%, #2f4867 50%),
        linear-gradient(135deg, #2f4867 50%, transparent 50%);
    background-position:
        calc(100% - 34px) calc(50% - 2px),
        calc(100% - 26px) calc(50% - 2px);
    background-size: 9px 9px, 9px 9px;
    background-repeat: no-repeat;
}

.booktransfer-form textarea {
    min-height: 190px;
    padding-bottom: 26px;
}

.booktransfer-form select::-ms-expand {
    display: none;
}

.booktransfer-form select:required:invalid {
    color: #2f4867;
}

.booktransfer-form select option {
    color: #1f354f;
}

.booktransfer-form__children {
    margin-top: 4px;
}

.booktransfer-form .form-group_checkbox .checkbox span {
    font-size: 16px;
    color: #1f354f;
}

.booktransfer-form .form-submit {
    gap: 20px;
}

.booktransfer-form .form-submit__confirm {
    gap: 10px;
}

.booktransfer-form .btn-color {
    width: 100%;
}

@media (max-width: 767.98px) {
    .booktransfer-card {
        padding: 16px;
    }

    .booktransfer-card__head h2 {
        font-size: 26px;
    }

    .booktransfer-form__grid {
        grid-template-columns: 1fr;
    }

    .booktransfer-form select {
        min-height: 64px;
        border-radius: 12px;
    }
}
