/* ==========================================================================
   EUROLAMP.cz – Registrace: velké chybové okno + zachování formuláře (styly)
   Patří k eurolamp-registrace-chybove-okno.js
   ========================================================================== */

.elp-reg-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  /* must sit above Shoptet's toast (z-index 999999999) and the cookie bar */
  z-index: 2147483000;
  animation: elpRegFade 0.15s ease-out;
}
@keyframes elpRegFade { from { opacity: 0; } to { opacity: 1; } }

.elp-reg-modal {
  box-sizing: border-box;
  width: 100%;
  max-width: 460px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  padding: 32px 28px;
  text-align: center;
  font-family: inherit;
  color: #222;
}
.elp-reg-modal__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #fdeaec;
  color: #e2001a;
  font-size: 32px;
  line-height: 56px;
  font-weight: 700;
}
.elp-reg-modal__title {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
  color: #1a1a1a;
}
.elp-reg-modal__text {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.5;
}
.elp-reg-modal__note {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.5;
  color: #666;
}
.elp-reg-modal__btn {
  display: inline-block;
  min-width: 200px;
  padding: 13px 28px;
  border: 0;
  border-radius: 6px;
  background: #e2001a;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease;
}
.elp-reg-modal__btn:hover,
.elp-reg-modal__btn:focus { background: #b80016; outline: none; }

@media (max-width: 480px) {
  .elp-reg-modal { padding: 26px 20px; }
  .elp-reg-modal__title { font-size: 20px; }
  .elp-reg-modal__btn { width: 100%; }
}
