/* ============================================================
   password-field.css — стили для поля пароля
   ============================================================ */

.field-group-password {
    position: relative;
}

/* Кнопка-глазик */
.toggle-password {
    position: absolute;
    right: 0;
    bottom: 0;
    background: transparent;
    border: none;
    border-radius: 4px;
    transition: background 0.2s;
    cursor: pointer;
    padding: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

/* Иконка глаза внутри кнопки */
.field-group-password .toggle-password i {
    position: static;
    left: auto;
    bottom: auto;
    font-size: 18px;
    color: rgba(255, 255, 255);
    pointer-events: none;
    line-height: 1;
    display: block;
    height: auto;
    margin-bottom: 4px;
}

.toggle-password:hover {
    background: rgba(255, 255, 255, 0.007);
    border-radius: 4px;
}

.toggle-password:focus {
    background: rgba(255, 255, 255, 0.007);
    outline: none;
}