.contact-section {
  width: 100%;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  padding: 3rem 1rem;
}

.contact-intro > * + * {
  margin-top: 1rem;
}

.contact-title {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
}

.contact-description {
  color: rgb(107 114 128);
}

.form-group-container {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  padding: 0.5rem;
  border: 1px solid #e5e7eb;
  display: flex;
  height: 2.5rem;
  width: 100%;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.form-input::placeholder,
.form-textarea:focus-visible {
  color: #6b7280;
}

.form-input:focus-visible,
.form-textarea:focus-visible {
  /* outline: 2px solid #2563eb; */
  outline-offset: 2px;
}

.form-textarea {
  min-height: 120px;
}

.form-submit {
  width: 100%;
  margin-top: 1.2rem;
  border: 1px solid #e44c65;
  border-radius: 0.375rem;
  transition:
    background 0.2s,
    color 0.2s,
    border 0.2s,
    box-shadow 0.2s;
}

.form-submit:hover,
.form-submit:focus-visible {
  background-color: #c13b52;
  color: #fff !important;
  border: 1px solid #c13b52;
  box-shadow: 0 2px 8px rgba(228, 76, 101, 0.15);
  cursor: pointer;
}

.alertButton{
  border: 1px solid #e44c65;
}
.alertButton:hover,
.alertButton:focus-visible {
  background-color: #c13b52;
  color: #fff !important;
  border: 1px solid #c13b52;
  /* box-shadow: 0 2px 8px rgba(228, 76, 101, 0.15); */
  cursor: pointer;
}