/* ===========================
   NWR Registration Form
=========================== */

.nwr-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  font-family: inherit;
}

/* ---------- Page Title ---------- */

.nwr-page-title {
  text-align: center;
  margin-bottom: 35px;
}

.nwr-page-title h1 {
  margin: 0;
  font-size: 42px;
  font-weight: 700;
  color: #183153;
}

.nwr-page-title p {
  margin-top: 10px;
  color: #666;
  font-size: 18px;
}

/* ---------- Two Column Layout ---------- */

.nwr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}

/* ---------- Cards ---------- */

.nwr-event-card,
.nwr-form-card {
  background: #fff;

  border-radius: 18px;

  padding: 35px;

  border: 1px solid #ececec;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);

  height: 100%;
}

.nwr-event-card h2,
.nwr-form-card h2 {
  margin-top: 0;

  margin-bottom: 30px;

  color: #183153;

  font-size: 34px;
}

/* ---------- Information ---------- */

.nwr-info {
  margin-bottom: 28px;
}

.nwr-info h4 {
  margin-bottom: 8px;

  color: #183153;

  font-size: 22px;
}

.nwr-info p {
  margin: 0;

  color: #555;

  line-height: 1.8;
}

/* ---------- Event Boxes ---------- */

.nwr-details {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 15px;

  margin-top: 35px;
}

.nwr-details div {
  background: #fafafa;

  border: 1px solid #ececec;

  border-radius: 12px;

  padding: 18px;

  transition: 0.3s;
}

.nwr-details div:hover {
  transform: translateY(-3px);

  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.nwr-details strong {
  display: block;

  margin: 8px 0 5px;

  color: #183153;
}

/* ---------- Form ---------- */

.nwr-field {
  margin-bottom: 20px;
}

.nwr-field label {
  display: block;

  font-size: 14px;

  font-weight: 600;

  margin-bottom: 8px;

  color: #444;
}

.nwr-field input {
  width: 100%;

  height: 48px;

  border: 1px solid #d9d9d9;

  border-radius: 10px;

  padding: 0 16px;

  font-size: 15px;

  transition: 0.3s;

  background: #fff;

  box-sizing: border-box;
}

.nwr-field input:focus {
  outline: none;

  border-color: #1c6dd0;

  box-shadow: 0 0 0 3px rgba(28, 109, 208, 0.15);
}

/* ---------- Checkbox ---------- */

.nwr-checkbox {
  margin: 25px 0;

  font-size: 14px;
}

/* ---------- Amount ---------- */

.nwr-total {
  background: #f5f9ff;

  border: 1px solid #dce8ff;

  border-radius: 10px;

  padding: 18px;

  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-bottom: 25px;

  font-size: 18px;
}

.nwr-total strong {
  color: #0d6efd;

  font-size: 26px;
}

/* ---------- Button ---------- */

.nwr-form-card button {
  width: 100%;

  border: none;

  border-radius: 12px;

  padding: 16px;

  background: linear-gradient(135deg, #0d6efd, #0b57d0);

  color: #fff;

  font-size: 18px;

  font-weight: 600;

  cursor: pointer;

  transition: 0.3s;
}

.nwr-form-card button:hover {
  transform: translateY(-2px);

  box-shadow: 0 12px 20px rgba(13, 110, 253, 0.25);
}

/* ---------- Mobile ---------- */

@media (max-width: 900px) {
  .nwr-grid {
    grid-template-columns: 1fr;
  }

  .nwr-details {
    grid-template-columns: 1fr;
  }
}

/* Force our own input styles */

.nwr-form-card input[type="text"],
.nwr-form-card input[type="email"],
.nwr-form-card input[type="tel"] {
  width: 100% !important;

  height: 52px !important;

  padding: 0 18px !important;

  border: 1px solid #d8dee8 !important;

  border-radius: 12px !important;

  background: #fff !important;

  font-size: 15px !important;

  color: #222 !important;

  box-sizing: border-box;

  box-shadow: none !important;
}

.nwr-form-card input:focus {
  border-color: #0d6efd !important;

  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.12) !important;

  outline: none;
}

.nwr-form-card button {
  width: 100% !important;

  height: 56px !important;

  border: none !important;

  border-radius: 12px !important;

  background: linear-gradient(135deg, #0d6efd, #004ecb) !important;

  color: #fff !important;

  font-size: 18px !important;

  font-weight: 600 !important;

  cursor: pointer;

  transition: 0.3s;

  text-transform: none !important;

  letter-spacing: 0.3px;
}

.nwr-form-card button:hover {
  transform: translateY(-2px);

  box-shadow: 0 10px 20px rgba(13, 110, 253, 0.25);
}

.nwr-checkbox {
  display: flex;

  align-items: center;

  gap: 10px;

  margin: 22px 0;
}

.nwr-checkbox input {
  width: 18px !important;

  height: 18px !important;
}

.nwr-checkbox label {
  margin: 0;

  font-size: 15px;

  color: #555;
}

/* Validation */

.nwr-error {
  display: block;

  color: #dc2626;

  font-size: 13px;

  margin-top: 6px;

  min-height: 18px;
}

.nwr-invalid {
  border-color: #dc2626 !important;
}
