/* ================================================= */
/* ===== CONTACT / ORDER FORM PAGE ===== */
/* ================================================= */

.form-page {
  min-height: 100vh;
  background: #f5f7fb;
  display: flex;
  justify-content: center;
  padding: 60px 20px;
}

.form-container {
  width: 100%;
  max-width: 720px;
  background: #ffffff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* ===== HEADER ===== */

.form-title {
  font-size: 34px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
}

.form-subtext {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* ===== FORM BASE ===== */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* labels */
.contact-form label {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}

/* inputs */
.contact-form input,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 16px;
  transition: 0.2s;
}

/* focus */
.contact-form input:focus,
.contact-form select:focus {
  outline: none;
  border-color: #2563eb;
}

/* ===== SECTION HEADINGS ===== */

.contact-form h3 {
  margin-top: 10px;
  font-size: 20px;
  color: #111827;
}

/* ================================================= */
/* ===== RADIO GROUP (PROPER ALIGNMENT) ===== */
/* ================================================= */

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* each option */
.radio-group label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
  font-weight: 500;
}

/* hover effect */
.radio-group label:hover {
  border-color: #2563eb;
  background: #f9fafb;
}

/* radio input */
.radio-group input[type="radio"] {
  accent-color: #2563eb;
  transform: scale(1.1);
}

/* ================================================= */
/* ===== CONSENT ===== */
/* ================================================= */

.consent {
  display: flex;
  gap: 10px;
  font-size: 15px;
  color: #374151;
  align-items: flex-start;
  margin : 10px  0 0 0 ;

}

.consent input {
  margin-bottom: 10px;
  width: 20px;
  height: 30px;
}

/* ================================================= */
/* ===== BUTTON ===== */
/* ================================================= */

.submit-btn {
  margin-top: 10px;
  padding: 14px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.25s;
}

.submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(37,99,235,0.25);
}

/* ================================================= */
/* ===== BACK LINK ===== */
/* ================================================= */

.back-link {
  display: inline-block;
  margin-bottom: 20px;
  color: #2563eb;
  font-weight: 500;
}

.back-link:hover {
  text-decoration: underline;
}

/* ================================================= */
/* ===== RESPONSIVE ===== */
/* ================================================= */

@media (max-width: 768px) {
  .form-container {
    padding: 25px;
  }
}