/* ============================================
   LOGIN PAGE SPECIFIC STYLES
   ============================================ */

/* Input Wrapper - Must be relative for the eye icon to position correctly */
.input-wrapper {
    position: relative;
    margin-bottom: 1.5rem; /* Add some spacing between inputs */
}

/* Password Toggle Icon */
.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    padding: 0;
}

.password-toggle:hover {
    color: #6366f1; /* Indigo color on hover */
    transform: translateY(-50%) scale(1.1);
}

/* Ensure the input has enough padding on the right so text doesn't hide behind the icon */
.input-field[type="password"],
.input-field[type="text"] {
    padding-right: 3rem; 
}