/* Password Field Toggle Button Styles */
.password-field .password-toggle-btn {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    padding: 0;
    color: #9ca3af;
}

.password-field .password-toggle-btn:focus {
    outline: none;
    color: #111827;
}

/* Disabled Email Field Styles */
#changePasswordEmail:disabled {
    background-color: #f3f4f6;
    opacity: 1;
    cursor: not-allowed;
}

