﻿/* ===========================================================
   🔐 PASSWORD FIELD (SHOW / HIDE)
=========================================================== */

.password-wrapper {
    position: relative;
    width: 100%;
}

    .password-wrapper input {
        padding-right: 42px !important;
        box-sizing: border-box;
    }

.password-eye {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6c757d;
    z-index: 20;
    font-size: 1.2rem;
}

    .password-eye:hover {
        color: #000;
    }
