/* ========== СТИЛИ ДЛЯ МЕНЮ АДМИНИСТРАТОРА ========== */

/* Экран администратора */
#adminScreen {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    overflow: hidden !important;
    background: linear-gradient(135deg, #f0f2f5 0%, #e6e9f0 100%);
}

#adminScreen.active {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
}

/* Контейнер меню администратора */
.admin-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    padding: 20px;
    overflow: hidden !important;
    box-sizing: border-box;
}

/* Заголовок администратора */
.admin-header {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    animation: slideDown 0.3s ease;
}

.admin-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: #2d3748;
    margin: 0 0 10px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.admin-header p {
    font-size: 14px;
    color: #718096;
    margin: 0;
}

/* Меню администратора */
.admin-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    animation: fadeIn 0.5s ease;
}

/* Кнопки меню администратора */
.admin-btn {
    width: 100%;
    padding: 18px 20px;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 60px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.admin-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.admin-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.admin-btn-secondary {
    background: white;
    color: #333;
    border: 2px solid #e0e0e0;
}

.admin-btn-secondary:hover {
    border-color: #667eea;
    color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
}

.admin-btn-danger {
    background: linear-gradient(135deg, #f56565 0%, #e53e3e 100%);
    color: white;
}

.admin-btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.3);
}

.admin-btn-success {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
}

.admin-btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(72, 187, 120, 0.3);
}

/* Иконки в кнопках */
.admin-btn-icon {
    font-size: 20px;
}

/* Разделитель в меню */
.admin-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #cbd5e0, transparent);
    margin: 10px 0;
}

/* ========== МОДАЛЬНОЕ ОКНО АВТОРИЗАЦИИ ========== */
.admin-auth-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.admin-auth-modal {
    background: white;
    border-radius: 24px;
    padding: 30px;
    max-width: 350px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: scaleUp 0.3s ease;
}

.admin-auth-title {
    font-size: 24px;
    font-weight: 700;
    color: #2d3748;
    text-align: center;
    margin-bottom: 20px;
}

.admin-auth-subtitle {
    font-size: 14px;
    color: #718096;
    text-align: center;
    margin-bottom: 25px;
}

.admin-auth-input {
    width: 100%;
    padding: 16px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    margin-bottom: 20px;
    background: #f8f9fa;
}

.admin-auth-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.admin-auth-input.error {
    border-color: #f56565;
    animation: shake 0.3s ease;
}

/* ========== АГРЕССИВНОЕ СКРЫТИЕ НАТИВНЫХ КНОПОК ПОКАЗА ПАРОЛЯ ========== */

/* Для всех браузеров */
.admin-auth-input::-ms-reveal,
.admin-auth-input::-ms-clear {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    visibility: hidden !important;
}

/* Для Chrome, Safari, Edge */
.admin-auth-input::-webkit-credentials-auto-fill-button,
.admin-auth-input::-webkit-contacts-auto-fill-button,
.admin-auth-input::-webkit-textfield-decoration-container,
.admin-auth-input::-webkit-inner-spin-button,
.admin-auth-input::-webkit-outer-spin-button,
.admin-auth-input::-webkit-search-cancel-button,
.admin-auth-input::-webkit-search-decoration,
.admin-auth-input::-webkit-search-results-decoration,
.admin-auth-input::-webkit-search-results-button {
    display: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Для Firefox */
.admin-auth-input {
    -moz-appearance: textfield !important;
}

.admin-auth-input::-moz-reveal {
    display: none !important;
}

/* Универсальные правила для всех полей типа password */
input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

input[type="password"]::-webkit-credentials-auto-fill-button,
input[type="password"]::-webkit-contacts-auto-fill-button {
    display: none !important;
    -webkit-appearance: none !important;
    visibility: hidden !important;
}

/* Дополнительный костыль для скрытия через псевдоэлементы */
.admin-auth-input {
    background-image: none !important;
    padding-right: 18px !important; /* Убираем лишний отступ, который оставляют браузеры */
}

.admin-auth-buttons {
    display: flex;
    gap: 12px;
}

.admin-auth-btn {
    flex: 1;
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-auth-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.admin-auth-btn-secondary {
    background: #f8f9fa;
    color: #333;
    border: 1px solid #e0e0e0;
}

/* ========== ЭКРАН СПИСКА ПОЛЬЗОВАТЕЛЕЙ ========== */
#adminUsersScreen {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    overflow: hidden !important;
    background: linear-gradient(135deg, #f0f2f5 0%, #e6e9f0 100%);
}

#adminUsersScreen.active {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
}

/* Контейнер списка пользователей */
.users-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 550px;
    height: 100vh;
    padding: 20px;
    overflow: hidden !important;
    box-sizing: border-box;
}

.users-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.users-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
}

.users-header h3 span {
    color: #667eea;
    font-size: 14px;
    font-weight: 400;
    margin-left: 10px;
}

.users-header-close {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border: none;
    border-radius: 10px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #718096;
}

.users-header-close:hover {
    background: #e9ecef;
    color: #e53e3e;
}

/* Выпадающий список групп */
.users-group-selector {
    margin-bottom: 20px;
}

.users-group-btn {
    width: 100%;
    padding: 16px 20px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
}

.users-group-btn:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.1);
}

.users-group-btn.active .dropdown-arrow {
    transform: rotate(180deg);
}

.users-group-list {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background: white;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    margin-top: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    box-sizing: border-box;
}

.users-group-list.active {
    max-height: 300px;
    opacity: 1;
    overflow-y: auto;
}

.users-group-item {
    padding: 14px 20px;
    font-size: 15px;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.users-group-item:last-child {
    border-bottom: none;
}

.users-group-item:hover {
    background: linear-gradient(135deg, #667eea10 0%, #764ba210 100%);
    color: #667eea;
    padding-left: 25px;
}

.users-group-item.selected {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 600;
}

/* Список студентов */
.users-list {
    flex: 1;
    overflow-y: auto;
    background: white;
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.users-list-title {
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #4a5568;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 10px;
}

.users-list-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Элемент пользователя */
.user-item {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
    border-left: 4px solid transparent;
}

.user-item.registered {
    border-left-color: #48bb78;
}

.user-item.unregistered {
    border-left-color: #f56565;
}

/* Основная строка пользователя */
.user-main-row {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.user-main-row:hover {
    background: rgba(102, 126, 234, 0.05);
}

/* Статус иконка */
.user-status-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 12px;
    font-size: 14px;
    flex-shrink: 0;
}

.user-status-icon.registered {
    background: #48bb78;
    color: white;
}

.user-status-icon.unregistered {
    background: #f56565;
    color: white;
}

/* Имя пользователя */
.user-name {
    flex: 1;
    font-size: 15px;
    font-weight: 500;
    color: #2d3748;
    word-break: break-word;
    overflow-wrap: break-word;
    line-height: 1.3;
}

.user-name.registered {
    color: #22543d;
}

.user-name.unregistered {
    color: #742a2a;
}

/* Кнопка раскрытия */
.user-expand-btn {
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #718096;
    margin-right: 5px;
    flex-shrink: 0;
}

.user-expand-btn:hover {
    background: #e9ecef;
    color: #667eea;
}

.user-expand-btn.expanded {
    transform: rotate(180deg);
    color: #667eea;
}

/* Кнопка удаления */
.user-delete-btn {
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f56565;
    flex-shrink: 0;
}

.user-delete-btn:hover {
    background: #fed7d7;
    color: #e53e3e;
}

.user-delete-btn:active {
    transform: scale(0.95);
}

/* Детальная информация пользователя */
.user-details {
    padding: 0 15px 15px 51px; /* 51px = статус иконка (24px) + margin (12px) + отступ */
    background: #f8f9fa;
    animation: slideDown 0.3s ease;
}

.user-detail-item {
    padding: 10px 12px;
    background: white;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.user-detail-label {
    font-size: 12px;
    color: #718096;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.user-telegram-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: linear-gradient(135deg, #667eea10 0%, #764ba210 100%);
    border-radius: 8px;
    color: #667eea;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid #667eea30;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
}

.user-telegram-link:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
}

.user-telegram-link.none {
    background: #f8f9fa;
    color: #a0aec0;
    border-color: #e0e0e0;
    cursor: default;
    pointer-events: none;
    opacity: 0.7;
}

.user-telegram-link.none:hover {
    background: #f8f9fa;
    color: #a0aec0;
}

/* Модальное окно подтверждения */
.admin-confirm-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    animation: fadeIn 0.3s ease;
}

.admin-confirm-modal {
    background: white;
    border-radius: 24px;
    padding: 30px;
    max-width: 350px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: scaleUp 0.3s ease;
    text-align: center;
}

.admin-confirm-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #f56565;
    animation: bounce 1s ease infinite;
}

.admin-confirm-title {
    font-size: 22px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
}

.admin-confirm-message {
    font-size: 16px;
    color: #718096;
    line-height: 1.5;
    margin-bottom: 25px;
}

.admin-confirm-buttons {
    display: flex;
    gap: 12px;
}

.admin-confirm-btn {
    flex: 1;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-confirm-btn-danger {
    background: linear-gradient(135deg, #f56565 0%, #e53e3e 100%);
    color: white;
}

.admin-confirm-btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.3);
}

.admin-confirm-btn-secondary {
    background: #f8f9fa;
    color: #333;
    border: 1px solid #e0e0e0;
}

.admin-confirm-btn-secondary:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

/* Кнопки действий */
.users-actions {
    margin-top: 20px;
    display: flex;
    gap: 12px;
}

.users-action-btn {
    flex: 1;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Уведомления */
.admin-notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #48bb78;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    z-index: 10001;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.3s ease;
    max-width: 90%;
    text-align: center;
}

.admin-notification.error {
    background: #f56565;
}

/* Анимации */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* Адаптивность */
@media (max-width: 500px) {
    .admin-container {
        padding: 15px;
    }

    .admin-header h2 {
        font-size: 24px;
    }

    .admin-btn {
        padding: 16px;
        font-size: 15px;
        min-height: 55px;
    }

    .users-container {
        padding: 15px;
    }

    .users-header {
        padding: 12px;
    }

    .users-header h3 {
        font-size: 18px;
    }

    .user-main-row {
        padding: 10px 12px;
    }

    .user-name {
        font-size: 14px;
    }

    .user-expand-btn,
    .user-delete-btn {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .user-details {
        padding: 0 12px 12px 47px;
    }

    .user-detail-item {
        padding: 8px 10px;
    }

    .user-telegram-link {
        padding: 8px 10px;
        font-size: 13px;
    }
}

@media (max-width: 350px) {
    .user-main-row {
        flex-wrap: wrap;
    }

    .user-name {
        font-size: 13px;
        width: 100%;
        margin-bottom: 8px;
    }

    .user-actions {
        display: flex;
        gap: 8px;
        margin-left: 36px;
    }

    .user-details {
        padding: 0 12px 12px 12px;
    }
}

@media (max-height: 700px) {
    .users-container {
        padding: 10px;
    }

    .users-header {
        margin-bottom: 10px;
        padding: 10px;
    }

    .users-group-selector {
        margin-bottom: 10px;
    }

    .user-main-row {
        padding: 8px 10px;
    }
}

/* Стилизация скроллбара */
.users-list::-webkit-scrollbar,
.users-group-list.active::-webkit-scrollbar {
    width: 4px;
}

.users-list::-webkit-scrollbar-track,
.users-group-list.active::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.users-list::-webkit-scrollbar-thumb,
.users-group-list.active::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 2px;
}

.users-list::-webkit-scrollbar-thumb:hover,
.users-group-list.active::-webkit-scrollbar-thumb:hover {
    background: #a0aec0;
}

/* ========== СПЕЦИАЛЬНЫЕ ПРАВИЛА ДЛЯ ЯНДЕКС.БРАУЗЕРА ========== */

/* Скрываем нативную кнопку Яндекс.Браузера */
.admin-auth-input::-webkit-credentials-auto-fill-button,
.admin-auth-input::-webkit-contacts-auto-fill-button,
.admin-auth-input::-webkit-textfield-decoration-container,
.admin-auth-input::-webkit-ya-password-toggle {
    display: none !important;
    -webkit-appearance: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Специфично для Яндекс.Браузера */
input[type="password"]::-webkit-ya-password-toggle {
    display: none !important;
}

/* Альтернативный метод для Яндекс.Браузера */
.admin-auth-input {
    -webkit-appearance: none;
    appearance: none;
}

/* Принудительно убираем отступ, который Яндекс добавляет для своей кнопки */
.admin-auth-input {
    padding-right: 18px !important;
}

/* Если не помогает, пробуем обернуть в дополнительный контейнер */
.yandex-password-fix {
    position: relative;
    display: block;
    width: 100%;
}

.yandex-password-fix::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 30px;
    background: white;
    pointer-events: none;
    z-index: 5;
}

/* ========== КАСТОМНАЯ КНОПКА ПОКАЗА ПАРОЛЯ ========== */

/* Контейнер для поля с кнопкой */
.admin-password-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

/* Поле ввода */
.admin-password-wrapper .admin-auth-input {
    width: 100%;
    padding: 16px 50px 16px 18px; /* Отступ справа для кнопки */
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: #f8f9fa;
    margin-bottom: 0;
}

.admin-password-wrapper .admin-auth-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.admin-password-wrapper .admin-auth-input.error {
    border-color: #f56565;
    animation: shake 0.3s ease;
}

/* Кнопка-глазик */
.admin-password-eye {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.2s ease;
    border-radius: 8px;
    width: 36px;
    height: 36px;
}

.admin-password-eye:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateY(-50%) scale(1.1);
}

.admin-password-eye:active {
    transform: translateY(-50%) scale(0.95);
}

/* Иконка внутри кнопки */
.eye-icon {
    font-size: 20px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.admin-password-eye:hover .eye-icon {
    transform: scale(1.1);
}

/* Скрываем нативные кнопки браузера */
.admin-password-wrapper .admin-auth-input::-ms-reveal,
.admin-password-wrapper .admin-auth-input::-ms-clear,
.admin-password-wrapper .admin-auth-input::-webkit-credentials-auto-fill-button,
.admin-password-wrapper .admin-auth-input::-webkit-contacts-auto-fill-button,
.admin-password-wrapper .admin-auth-input::-webkit-ya-password-toggle {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Адаптивность */
@media (max-width: 500px) {
    .admin-password-wrapper .admin-auth-input {
        padding: 14px 45px 14px 16px;
        font-size: 15px;
    }
    
    .admin-password-eye {
        right: 8px;
        width: 32px;
        height: 32px;
    }
    
    .eye-icon {
        font-size: 18px;
    }
}

@media (max-width: 380px) {
    .admin-password-wrapper .admin-auth-input {
        padding: 12px 40px 12px 14px;
        font-size: 14px;
    }
    
    .admin-password-eye {
        right: 6px;
        width: 28px;
        height: 28px;
    }
    
    .eye-icon {
        font-size: 16px;
    }
}