.register_form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 700px;

    margin-top: 90px;
}
.register_form_group{
    display: flex;
    width: 100%;
    height: 60px;
    align-items: center;
    justify-content: center;
}
.registration_form_top_block_right{
    display: flex;
    width: 100%;
    height: 60px;
    align-items: center;

}
.register_checkbox{
    margin: 10px;
}
.register_h4{
    font-size: 18px;
    color: #465478;
}

.register_arrow{
    width: 20px;
    height: 15px;
}
.register_title{
    color: #545C9E;
    font-size: 25px;
    letter-spacing: 2px;
    font-weight: 550;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-left: 40px;
    text-decoration: none;
}
.register_title:hover{
    color: rgba(84, 92, 158, 0.84);
    font-size: 26px;
}
.iti--allow-dropdown{
    width: 103.5%;
    margin-left: 65px;
}

/* --- базовый код (твоя версия) остаётся --- */

/* 📱 Адаптация под мобильные устройства */
@media (max-width: 768px) {
    .register_form {
        width: 95%;
        margin-top: 40px;
        min-height: auto; /* убираем жёсткую высоту */
        padding: 0 15px;
    }

    .register_form_group {
        display: flex;
        flex-direction: row; /* поля формы под друг другом */
        height: auto;
        margin-bottom: 15px;
        align-items: center
    }

    .registration_form_top_block_right {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
    }

    .register_title {
        font-size: 20px;
        margin-left: 0;
        text-align: center;
        padding: 10px 0;
    }

    .register_title:hover {
        font-size: 21px; /* чтобы не прыгало сильно */
    }

    .register_h4 {
        font-size: 16px;
        text-align: center;
    }

    .register_checkbox {
        margin: 5px 0;
    }

    .register_arrow {
        width: 16px;
        height: 12px;
    }

    .iti--allow-dropdown {
        width: 108%; /* чтобы не вылазило */
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .register_title {
        font-size: 18px;
    }

    .register_h4 {
        font-size: 14px;
    }

    .register_form {
        padding: 0 10px;
    }
}

