﻿@import "../utilities/_custom-color.css";

input::-ms-reveal,
input::-ms-clear {
    display: none;
}

.password-container {
    position: relative;
}

.password-eye {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--custom-dark);
}

    .password-eye.empty {
        color: var(--custom-medium-gray);
        pointer-events: none;
    }
