/* контейнер виджета */
#authorization-widget { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: flex-end; }
.btn-login { margin-left: 4px; padding: .5rem .75rem; cursor: pointer; border: 1px solid #ccc; border-radius: .5rem; background: #f7f7f7; }
.btn-login:hover {background-color: #e5e7eb;}
/* модалка */
.flux-modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.4);
  display: flex; align-items: center; justify-content: center; z-index: 10000;
}
.flux-modal {
  width: min(520px, 92vw);
  background: #fff; color: #111; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,.25);
  padding: 16px 18px; display: flex; flex-direction: column; gap: 12px;
}
.flux-modal h2 { margin: 0 0 8px 0; font-size: 1.25rem; }
.flux-form { display: flex; flex-direction: column; gap: 10px; }
.flux-row { display: flex; flex-direction: column; gap: 6px; }
.flux-row input {
  padding: 10px 12px; border: 1px solid #cfcfcf; border-radius: 8px; font: inherit;
}
.flux-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 4px; }
.flux-btn { padding: .55rem .9rem; border-radius: .5rem; border: 1px solid #bbb; background: #f4f4f4; cursor: pointer; }
.flux-btn:hover { box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);}
.flux-btn.primary { background: #2563eb; border-color: #2563eb; color: #fff; }
.flux-error { color: #b00020; min-height: 1.2em; font-size: .95rem; }

#lang-select { 
    background-color: blueviolet;
    color: white;
    border: 1px solid #62359f;
    padding: 6px 10px;

    /* чтобы отключить системный стиль */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;background: #dbe3eb;
  }