

.contact-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;

}

h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

h1 .white {
  color: white;
}
h1 .red {
  color: red;
  font-style: italic;
}

.subtitle {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 30px;
}

.contact-form {
  width: 100%;
}

.form-row {
  display: flex;
  justify-content: space-between;
  gap: 4vw;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  min-width: 45%;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
}

.form-group input {
  width: 90%;
  padding: 15px;
  border: none;
  border-radius: 40px;
  background-color: #eee;
  font-size: 16px;
}

.checkbox-row {
  justify-content: center;
  font-size: 14px;
  color: #ccc;
}

.checkbox-row input[type="checkbox"] {
  margin-right: 8px;
}

.checkbox-row a {
  color: white;
  text-decoration: underline;
}

.center {
  justify-content: center;
}

button[type="submit"] {
  background-color: #fbc531;
  border: none;
  color: black;
  padding: 15px 50px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 40px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button[type="submit"]:hover {
  background-color: #f1c40f;
}

.login-text {
  margin-top: 20px;
  font-size: 14px;
  color: #ccc;
}

.login-text a {
  color: red;
  text-decoration: none;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .form-group {
    min-width: 100%;
  }

  h1 {
    font-size: 28px;
  }

  button[type="submit"] {
    width: 100%;
  }

}
