.mx_ButtonCreateAccount {
    font-size: 0 !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

.mx_ButtonCreateAccount::after {
    content: "Регистрация";
    font-size: 15px;
}

.mx_Header_title {
    color: transparent !important;
    position: relative !important;
}

.mx_Header_title::before {
    content: "Добро пожаловать в CatchUpChat!";
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    position: absolute;
    left: 0;
    top: 0;
}

.mx_Logo {
    height: 100px!important;
}

.mx_Login_type_label {
    font-size: 16px;
    font-weight: 600;
}

/* Если поле не пустое — скрываем label */
/* Firefox и обычный ввод */
.mx_Field.mx_Field_input input:not(:placeholder-shown) + label {
    display: none !important;
}

/* Chrome autofill — ключевое правило */
.mx_Field.mx_Field_input input:-webkit-autofill + label {
    display: none !important;
}

/* Дополнительно фиксируем все состояния Chrome */
.mx_Field.mx_Field_input input:-webkit-autofill:hover + label,
.mx_Field.mx_Field_input input:-webkit-autofill:focus + label,
.mx_Field.mx_Field_input input:-webkit-autofill:active + label {
    display: none !important;
}