/* ---------- Base Styles ---------- */
body {
  background: linear-gradient(135deg, #eef2f7, #dce3f0);
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* ---------- Form Container ---------- */
.form-container {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  padding: 40px;
  width: 100%;
  max-width: 600px;
  transition: all 0.3s ease-in-out;
}

.form-container:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* ---------- Header Section ---------- */
.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-header img {
  width: 90px;
  height: auto;
  margin-bottom: 10px;
}

.form-header h2 {
  font-weight: 700;
  color: #1d3557;
  font-size: 26px;
  margin-bottom: 5px;
}

.form-header h5 {
  color: #457b9d;
  font-weight: 500;
  font-size: 18px;
}

/* ---------- Input Fields ---------- */
label {
  font-weight: 500;
  color: #333;
  margin-bottom: 5px;
}

input.form-control {
  border-radius: 10px;
  padding: 10px 15px;
  border: 1px solid #c8d1dc;
  transition: 0.2s ease;
}

input.form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 6px rgba(0, 123, 255, 0.2);
  outline: none;
}

/* ---------- Button Styling ---------- */
.btn-submit {
  background: linear-gradient(90deg, #007bff, #0056b3);
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  width: 100%;
  padding: 12px;
  border: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease-in-out;
}

.btn-submit:hover {
  background: linear-gradient(90deg, #0056b3, #003f8c);
  box-shadow: 0 4px 10px rgba(0, 91, 187, 0.3);
}

/* ---------- Footer Text ---------- */
.footer-text {
  text-align: center;
  margin-top: 25px;
  color: #6c757d;
  font-size: 14px;
}

/* ---------- Mobile Responsive ---------- */
@media (max-width: 576px) {
  .form-container {
    padding: 25px 20px;
  }

  .form-header img {
    width: 70px;
  }

  .form-header h2 {
    font-size: 22px;
  }

  .form-header h5 {
    font-size: 16px;
  }

  .btn-submit {
    padding: 10px;
  }
}

/* ---------- Tablet Responsive ---------- */
@media (min-width: 577px) and (max-width: 768px) {
  .form-container {
    padding: 35px;
  }

  .form-header img {
    width: 80px;
  }

  .form-header h2 {
    font-size: 24px;
  }
}

/* ---------- Form Help Text ---------- */
#contactHelp {
  font-size: 13px;
  margin-top: 5px;
}
