.password-field {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.password-field input {
    width: 100%;
    padding-right: 3.75rem !important;
}

.btn-reveal-pwd {
    position: absolute;
    top: 50%;
    right: 0.65rem;
    transform: translateY(-50%);
    width: 2.45rem;
    height: 2.45rem;
    min-width: 2.45rem;
    min-height: 2.45rem;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #7b8a9a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    line-height: 1;
    appearance: none;
    -webkit-appearance: none;
    user-select: none;
    touch-action: manipulation;
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
    pointer-events: auto;
}

.btn-reveal-pwd * {
    pointer-events: none !important;
}

.btn-reveal-pwd-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-reveal-pwd svg,
.btn-reveal-pwd i {
    width: 1.25rem;
    height: 1.25rem;
    display: block;
    stroke-width: 2.2;
}

.btn-reveal-pwd:hover,
.btn-reveal-pwd:focus-visible,
.btn-reveal-pwd.is-visible {
    color: #3498db;
    background: rgba(52, 152, 219, 0.1);
    outline: none;
}

.btn-reveal-pwd:active {
    transform: translateY(-50%) scale(0.94);
}