
/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/

.form-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  flex-direction: column;
}

.contact-box {
  width: 100%;
  max-width: 500px;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-family: inherit;
  box-sizing: border-box;
}

.contact-box label {
  font-weight: 600;
  color: #333;
}

.contact-box input,
.contact-box textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
  font-family: inherit;
}

.contact-box button {
  padding: 0.75rem 1.5rem;
  background-color: #6aa84f;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.contact-box button:hover {
  background-color: #447d2a;
}

/*--------------------------------------------------------------
# Thank You Page
--------------------------------------------------------------*/
.submitted {
  text-align: center;
  padding: 3rem;
  font-family: sans-serif;
}

.submitted h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.submitted a {
  color: #0044cc;
  text-decoration: underline;
}
