/*
 * Стили страницы «Вход» (Users/login): альтернативный способ входа (разделитель,
 * ссылка «Войти по email»), обёртка поля пароля с кнопкой-глазом.
 * Вынесены из <style>-блока шаблона 23.07.2026. Значения перенесены байт-в-байт.
 *
 * @see docs/features/20260718-План-выноса-style-блоков-из-шаблонов.md
 */
.alt-login-section {
    margin-top: 20px;
}
.alt-login-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin-bottom: 12px;
    color: #6c757d;
    font-size: 0.875rem;
}
.alt-login-divider::before,
.alt-login-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #dee2e6;
}
.alt-login-divider span {
    padding: 0 10px;
}
.alt-login-section .btn-block {
    display: block;
    width: 100%;
    margin-bottom: 8px;
}
.password-wrapper {
    position: relative;
}
.password-wrapper input[type="password"],
.password-wrapper input[type="text"].password-input {
    padding-right: 40px !important;
}
.password-wrapper .input {
    position: relative;
    margin-bottom: 20px;
}
.password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 12px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: #6c757d;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    line-height: 1;
}
.password-toggle:hover {
    color: #495057;
}
.password-toggle:focus {
    outline: none;
}
/* S1.4: inline вынесен — обёртка «Войти по email» */
.users-login-link-center {
    text-align: center;
    margin-top: 10px;
}
/* S1.4: inline вынесен — кнопка «Войти по email» */
.users-login-btn-auto {
    display: inline-block;
    width: auto;
    min-width: 150px;
}
