.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    isolation: isolate;
}

.password-wrapper .password-input {
    padding-right: 52px;
}

.password-wrapper .password-input::-ms-reveal,
.password-wrapper .password-input::-ms-clear {
    display: none;
}

.password-wrapper .password-input::-webkit-credentials-auto-fill-button,
.password-wrapper .password-input::-webkit-contacts-auto-fill-button {
    visibility: hidden;
    display: none !important;
    pointer-events: none;
    position: absolute;
    right: 0;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border: 0;
    background: transparent;
    padding: 0;
    border-radius: 999px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, background-color 0.18s ease;
}

.password-wrapper.has-value .toggle-password,
.password-wrapper:focus-within .toggle-password,
.password-wrapper:hover .toggle-password {
    opacity: 1;
    pointer-events: auto;
}

.toggle-password:hover {
    background-color: rgba(27, 94, 32, 0.08);
}

.toggle-password:focus-visible {
    outline: none;
    background-color: rgba(27, 94, 32, 0.08);
}

.eye-icon {
    width: 18px;
    height: 18px;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2.458 12C3.732 7.943 7.523 5 12 5c4.477 0 8.268 2.943 9.542 7-1.274 4.057-5.065 7-9.542 7-4.477 0-8.268-2.943-9.542-7Z'/%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z'/%3E%3C/svg%3E");
}

.password-wrapper.is-visible .eye-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m3 3 18 18'/%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M10.58 10.58A3 3 0 0 0 14 14a3 3 0 0 0-.58-3.42'/%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M9.88 5.1A10.94 10.94 0 0 1 12 5c4.48 0 8.27 2.94 9.54 7a11.5 11.5 0 0 1-2.27 3.95'/%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M6.23 6.23A11.5 11.5 0 0 0 2.46 12c1.27 4.06 5.06 7 9.54 7 1.55 0 3.03-.35 4.35-.98'/%3E%3C/svg%3E");
}
