

.form-container {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 600px;
  margin-top: 10px;
  margin-bottom: 10px;
}

h1, h2 {
  color: #333;
  text-align: center;
  margin-bottom: 20px;
}

h1 {
  font-size: 1.8rem;
  line-height: 1.4;
}

h2 {
  font-size: 1.5rem;
  border-bottom: 2px solid #007bff;
  padding-bottom: 10px;
}

/* Fieldset and legend styling for the notice */
fieldset {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 20px;
}

legend {
  font-weight: bold;
  color: #007bff;
  padding: 0 10px;
  background-color: #fff;
}

mark {
  background-color: #ffeeba;
  color: #856404;
  padding: 2px 5px;
  border-radius: 3px;
  font-weight: bold;
}

/* Form group and input styling */
.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #555;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box; /* Ensures padding doesn't affect width */
  font-size: 16px;
  border-radius: 25px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

input:focus,
select:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.25);
  outline: none;
}

/* Button styling */
.button-container {
  text-align: center;
}

button[type="submit"] {
  background-color: #794d00;
  color: white;
  padding: 14px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  border-radius: 25px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #794d00;
}