/**
 * Central login page styles
 */
body { background-color: #0f172a; }
.password-field { display: flex; align-items: stretch; }
.password-field input { border-start-end-radius: 0; border-end-end-radius: 0; }
.eye-button {
    height: 48px; width: 48px; border-start-end-radius: 0.25rem; border-end-end-radius: 0.25rem;
    display: flex; align-items: center; justify-content: center; background-color: #374151;
    border: 1px solid #4b5563; border-inline-start: none; color: #9ca3af;
}
.eye-button:hover { background-color: #4b5563; }
[dir="rtl"] .password-field { flex-direction: row-reverse; }
[dir="rtl"] .password-field input { border-start-end-radius: 0.25rem; border-end-end-radius: 0.25rem; border-start-start-radius: 0; border-end-start-radius: 0; }
[dir="rtl"] .eye-button { border-start-end-radius: 0.25rem; border-end-end-radius: 0.25rem; border-start-start-radius: 0; border-end-start-radius: 0; border-inline-end: none; }
