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

.password-wrapper input {
    width: 100%;
    padding-right: 40px; /* Space for the eye button */
}

.toggle-password {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    color: #94a3b8; /* Subtle gray matching your dark theme */
    transition: color 0.15s ease;
}

.toggle-password:hover {
    color: #00dc82; /* Kopi accent green */
}