.form-block {
    display: flex;
    margin: 0 -10px;
    flex-direction: column;
}

.form-block__item {
    width: 100%;
    padding: 0 10px;
}

.form-block__item:not(:last-child) {
    margin-bottom: 20px;
}

.customer-info,
.enter-container {
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    padding: 20px;
    box-sizing: border-box;
}

.enter-title {
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 10px;
}

.enter-text {
    margin-bottom: 10px;
}

.enter-text--strong {
    font-weight: bold;
}

@media (min-width: 767px) {
    .form-block {
        flex-direction: row;
    }

    .enter-wrapper .e-form__row {
        flex-wrap: wrap;
    }

    .enter-wrapper .e-form__title {
        width: 100%;
        font-weight: bold;
        margin-bottom: 5px;
        text-align: left;
    }

    .form-block__item {
        width: 50%;
        padding: 0 10px;
    }

    .form-block__item:not(:last-child) {
        margin-bottom: 0;
    }
}

.enter-forgot-link {
    color: var(--main-color);
    display: block;
    width: 100%;
    text-align: end;
    margin-bottom: 15px;
}