/* ============================================
   Verhuizingen Bookings – Frontend Styles
   ============================================ */

.vh-booking-form {
  background: #f7f9fb;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  max-width: 650px;
  margin: 30px auto;
  font-family: "Segoe UI", Arial, sans-serif;
}

.vh-booking-form h2 {
  text-align: center;
  color: #004aad;
  margin-bottom: 15px;
}

.vh-booking-form p {
  text-align: center;
  margin-bottom: 25px;
  color: #444;
}

.vh-booking-form label {
  font-weight: 600;
  color: #333;
  display: block;
  margin-bottom: 5px;
}

.vh-booking-form input,
.vh-booking-form textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 15px;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.vh-booking-form input:focus,
.vh-booking-form textarea:focus {
  border-color: #004aad;
  box-shadow: 0 0 0 3px rgba(0, 74, 173, 0.2);
  outline: none;
}

.vh-booking-form button {
  display: block;
  width: 100%;
  background-color: #004aad;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.vh-booking-form button:hover {
  background-color: #00327b;
}

.vh-booking-success {
  background: #e6f9e6;
  border: 1px solid #b2e0b2;
  color: #2c662d;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  max-width: 600px;
  margin: 25px auto;
  font-weight: 500;
}
