.login-black-link {
    color: #151513 !important;   /* Чёрный */
    font-weight: 500;
    text-decoration: none !important; /* Без подчеркивания */
    background: none;
    box-shadow: none;
    outline: none;
    transition: none;
}
.login-black-link:visited,
.login-black-link:active,
.login-black-link:focus,
.login-black-link:hover {
    color: #151513 !important;
    text-decoration: none !important;
    background: none;
    box-shadow: none;
    outline: none;
}

.resend-gray {
    color: var(--color-gray);
}
.resend-black {
    color: #151513 !important;
    text-decoration: none !important;
}

.code-inputs {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 10px;
}

.code-box {
    flex: 1 1 0;         /* <-- равное распределение по ширине */
    min-width: 30px;     /* минимальная ширина для удобства */
    max-width: 64px;     /* максимальная ширина */
    height: 56px;
    border: 1px solid var(--color-border, #DADADA);
    border-radius: 18px;
    background: #fff;
    font-size: 28px;
    text-align: center;
    outline: none;
    font-style: normal;
    transition: border-color 0.18s;
    font-family: inherit;
    box-sizing: border-box;
}
.code-box:focus {
    border-color: var(--color-black, #151513);
}

.code-box.error {
    border-color: #FF2F3A !important; /* красный */
}

#sent-phone {
    color: var(--color-black, #151513) !important;
    font-weight: 500;
}