.password-field {
    position: relative;
    width: 100%;
}

.password-field-input {
    width: 100%;
    padding-right: 44px !important;
}

.password-field-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: color var(--transition) ease;
    z-index: 10;
}

.password-field-toggle:hover {
    color: var(--color-green);
}

.password-field-toggle:focus {
    outline: none;
    color: var(--color-green);
}

.password-field-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
