/* ===================================== 
   Astro Numerology Form Styles
   ===================================== */

/* Form wrapper */
.nr-form {
  max-width: 420px;
  margin: 0 auto;
  background: #faf9f6;
  border: 1px solid #e2d9c5;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  font-family: 'Poppins', sans-serif;
}

/* Field blocks */
.nr-form .field {
  margin-bottom: 14px;
}

.nr-form label {
  display: block;
  font-weight: 600;
  color: #444;
  margin-bottom: 6px;
  font-size: 14px;
}

/* Inputs */
.nr-form input[type="text"],
.nr-form input[type="date"],
.nr-form input[type="number"],
.nr-form select {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #d6dce0;
  border-radius: 5px;
  background: #fff;
  transition: all 0.2s ease;
  font-size: 14px;
}

.nr-form input:focus,
.nr-form select:focus {
  border-color: #c3a33f;
  box-shadow: 0 0 4px rgba(195,163,63,0.4);
  outline: none;
}

/* DOB row - astro boxes */
.nr-dob-row {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.nr-dob-row .dob-box {
  flex: 1;
  text-align: center;
}

.nr-dob-row .dob-box select,
.nr-dob-row .dob-box input {
  text-align: center;
}

/* Button */
.nr-form .submit {
  background: linear-gradient(135deg, #e2c151, #c8a033);
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.nr-form .submit:hover {
  background: linear-gradient(135deg, #d4b43e, #b98e22);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Notes and errors */
.nr-form .note {
  font-size: 13px;
  color: #666;
  margin-top: 8px;
}

.nr-error {
  color: #b00020;
  font-size: 13px;
  margin-top: 6px;
  display: none;
}

/* Astro theme flair */
.nr-form {
  background: #fffef8;
  background-image: radial-gradient(circle at 10% 10%, #fffbe2 0%, transparent 25%), radial-gradient(circle at 90% 90%, #fff1d6 0%, transparent 25%);
}

.nr-form h3 {
  text-align: center;
  color: #b58b2a;
  margin-bottom: 10px;
  font-family: 'Georgia', serif;
  font-size: 18px;
}

/* Small enhancements for mobile */
@media (max-width: 500px) {
  .nr-dob-row {
    flex-direction: column;
  }
}

/* Gold button with black text */
/* Strong override for Numerology form button (CSS-only) */
form.nr-form button.submit.nr-custom-btn,
.nr-form button.submit.nr-custom-btn,
.nr-form input[type="submit"].nr-custom-btn {
  background-color: #0073e6 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 5px !important;
  padding: 10px 18px !important;
  cursor: pointer !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  width: 100% !important;
  text-align: center !important;
}

/* Hover */
form.nr-form button.submit.nr-custom-btn:hover,
.nr-form button.submit.nr-custom-btn:hover {
  background-color: #005bb5 !important;
}
