.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #666;
    transition: color 0.3s;
    padding: 0;
    line-height: 1;
}

.toggle-password:hover {
    color: #007bff;
}

/* Ensure input has relative positioning to contain the toggle */
input[type="password"] {
    position: relative;
    padding-right: 40px; /* Space for toggle button */
}

/* Adjust for smaller screens */
@media (max-width: 480px) {
    .toggle-password {
        right: 8px;
        font-size: 16px;
    }
    input[type="password"] {
        padding-right: 36px;
    }
}