/* password-eye.css — Dollhouse Dolls
   Drop in /css/ and link from any login page
   ------------------------------------------ */
.pw-wrap {
    position: relative;
    margin-bottom: 16px;
}
.pw-wrap input {
    width: 100%;
    padding-right: 46px !important;
    box-sizing: border-box;
}
.pw-eye {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #555;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
    line-height: 1;
}
.pw-eye:hover { color: #ff3366; }
.pw-eye svg   { width: 18px; height: 18px; display: block; }
