/* Код для отображения глаза при вводе пароля */

.password-field {
    position: relative;
    display: flex;
    align-items: center;
}

.password-field input {
    width: 100%;
    padding-right: 50px;
}

.password-toggle {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    padding: 5px;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 2;
}

.password-toggle svg {
    display: block;
    width: 26px;
    height: 26px;
    fill: none;
    stroke: #555;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
