.auth {
    background: #f6f6f6;
    border-radius: 12px;
    border: 1px solid #e4e4e4;
    max-width: 420px;
    min-width: 280px;
    margin: 55px auto 24px auto; /* Отступ снизу - только тут изменено */
    padding: 36px 35px 22px 35px;
    box-sizing: border-box;
}

.auth__form { }

.auth__title {
    font-size: 22px;
    font-weight: 600;
    color: #393939;
    margin-bottom: 25px;
    text-align: center;
}

.auth__field {
    margin-bottom: 20px;
}


.auth__label {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    color: #787878;
    font-weight: 400;
    gap: 6px;
}
.auth__label-text {
    display: flex;
    align-items: center;
    gap: 4px;
}

.auth__star {
    color: #e14639;
    margin-left: 2px;
    font-size: 16px;
    vertical-align: middle;
    font-weight: 700;
}

.auth__input {
    width: 100%;
    padding: 10px 13px;
    border-radius: 8px;
    border: 1.5px solid #e1e1e1;
    font-size: 16px;
    outline: none;
    background: #fff;
    transition: border-color 0.2s;
}
.auth__input:focus {
    border-color: #217cd8;
}

.auth__options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.auth__checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
    color: #828282;
    user-select: none;
}
.auth__checkbox-input {
    display: none;
}
.auth__checkbox-indicator {
    width: 18px;
    height: 18px;
    background: #fff;
    border: 1.5px solid #c7c7c7;
    border-radius: 4px;
    margin-right: 8px;
    position: relative;
    box-sizing: border-box;
    transition: border-color 0.15s, background 0.18s;
}
.auth__checkbox-input:checked + .auth__checkbox-indicator {
    background: #217cd8;
    border-color: #217cd8;
}
.auth__checkbox-input:checked + .auth__checkbox-indicator:after {
    content: "";
    position: absolute;
    left: 4px; top: 1px;
    width: 6px; height: 12px;
    border: solid #fff;
    border-width: 0 2.2px 2.2px 0;
    transform: rotate(43deg);
    display: block;
}
.auth__checkbox-text { vertical-align: middle;}

.auth__forgot {
    color: #217cd8;
    text-decoration: underline;
    font-size: 15px;
    white-space: nowrap;
}

.auth__actions {
    margin-top: 12px;
}
.auth__btn {
    background: #217cd8;
    color: #fff;
    border: none;
    border-radius: 7px;
    padding: 10px 0;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s;
}
.auth__btn_type_primary:hover {
    background: #1966ae;
}
.auth__btn[disabled],
.auth__btn:disabled {
    background: #b8bfd0 !important;
    color: #ffffff !important;
    cursor: not-allowed !important;
    opacity: 1 !important;
}

.auth__register-wrap {
    text-align: center;
    margin-top: 18px;
}
.auth__register {
    color: #217cd8;
    background: transparent;
    border: none;
    text-decoration: underline;
    font-size: 15px;
    padding: 0;
    cursor: pointer;
}

@media (max-width: 520px) {
    .auth {
        padding: 18px 3vw 9vw 3vw;
        max-width: 99vw;
        min-width: 0;
    }
    .auth__title {
        font-size: 18px;
    }
    .auth__input {
        font-size: 15px;
    }
    .auth__btn {
        font-size: 15px;
        border-radius: 6px;
        padding: 10px 0;
    }
}