/* 🌆 Чіткий фон */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: url("amsterdam.jpg") no-repeat center center fixed;
  background-size: cover;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 🌑 Напівпрозоре затемнення поверх */
#bg-animation {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

/* 🔝 Верхня панель */
.wrap {
  position: relative;
  width: 100%;
  z-index: 2;
}
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 30px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
}
.topbar .brand {
  font-size: 18px;
  color: white;
  text-decoration: none;
}

/* 📄 Картка */
.center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.card {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 35px 30px;
  border-radius: 14px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* 🧾 Заголовки */
.card h2 {
  margin-bottom: 8px;
  font-size: 22px;
}
.card .muted {
  font-size: 14px;
  color: #e2e8f0;
  margin-bottom: 20px;
}

/* 📩 Поля */
.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-size: 13px;
  margin-bottom: 5px;
}
.field input {
  width: 100%;
  padding: 11px;
  font-size: 15px;
  border-radius: 6px;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  color: #111827;
}

/* 🔘 Кнопки */
.row {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.btn {
  padding: 10px 16px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.btn.primary {
  background: #3b82f6;
  color: white;
}
.btn.ghost {
  background: transparent;
  color: white;
  border: 1px solid #94a3b8;
}

/* ✅/❌ Повідомлення */
#errorBox, #okBox {
  padding: 10px 12px;
  font-size: 14px;
  margin-bottom: 15px;
  border-radius: 6px;
}
#errorBox {
  background: #dc2626;
  color: white;
}
#okBox {
  background: #22c55e;
  color: white;
}

/* 🔁 Футер */
.foot {
  margin-top: 18px;
  font-size: 13px;
}
.foot a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.foot a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transition: 0.2s ease;
}

/* 📱 Мобільна адаптація */
@media (max-width: 480px) {
  .topbar {
    flex-direction: column;
    gap: 10px;
    padding: 10px 20px;
  }

  .card {
    padding: 25px 20px;
    margin: 20px;
  }

  .row {
    flex-direction: column;
    gap: 8px;
  }
}

.btn.fullwidth {
  width: 100%;
  text-align: center;
  justify-content: center;
}

#errorBox, #okBox {
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 15px;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
