.password-field-wrap {
    position: relative;
    width: 100%;
}

.password-field-wrap input {
    padding-left: 52px;
}

.password-toggle-button {
    position: absolute;
    left: 10px;
    top: 50%;
    width: 38px;
    height: 38px;
    transform: translateY(-50%);
    border-radius: 13px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.82);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-main);
    font-size: 16px;
    cursor: pointer;
    transition: .2s ease;
}

.password-toggle-button:hover {
    background: rgba(196,153,91,.18);
    color: #fff;
}

.password-toggle-button span {
    line-height: 1;
}

body.light-mode .password-toggle-button {
    background: rgba(255, 250, 241, .68);
    border-color: rgba(92, 66, 38, .12);
    color: rgba(42, 33, 24, .68);
}

body.light-mode .password-toggle-button:hover {
    background: rgba(196,153,91,.16);
    color: #2a2118;
}