.password-control {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-width: 0;
}

.password-control > input {
    min-width: 0;
    padding-right: 38px !important;
}

.password-toggle {
    position: absolute;
    z-index: 2;
    top: 50%;
    right: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    padding: 0;
    border: 0;
    border-radius: 6px;
    outline: 0;
    background: transparent;
    color: #597676;
    cursor: pointer;
    transform: translateY(-50%);
}

.password-toggle:hover {
    background: rgba(0, 171, 145, .08);
    color: #009675;
}

.password-toggle:focus-visible {
    box-shadow: 0 0 0 2px rgba(0, 171, 145, .22);
}

.password-toggle__icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.password-toggle__icon--hide,
.password-toggle[aria-pressed="true"] .password-toggle__icon--show {
    display: none;
}

.password-toggle[aria-pressed="true"] .password-toggle__icon--hide {
    display: block;
}
