body {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Inter';
  font-weight: 300;
  font-size: 0.8rem;
}

.rsvp-form-wrapper {
  /* background-color: #e3e0ca; */
  padding: 20px;
  min-width: 300px;
  max-width: 500px;
  width: 80vw;
  /* box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.2); */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.form-header {
  margin-bottom: 50px;
  font-size: 3rem;
  font-weight: 100;
  text-transform: uppercase;
}

.rsvp-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 20px;
}

.input-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 5px;
  text-align: left;
}

.text-field {
  outline: none;
  border: none;
  font-family: inherit;
  font-size: 1.2rem;
  font-weight: 200;
  color: var(--primary-color);
  background-color: var(--background);
  border-radius: 10px;
  border: 2px solid var(--background-dark);
  padding: 10px;
  transition: box-shadow var(--animation-duration);
  width: 100%;
}

.text-field:focus {
  border: 2px solid var(--primary-color-light);
  box-shadow: 0 0 5px var(--primary-color-light);
}

.invalid-text-field {
  border: 2px solid var(--accent-color);
  box-shadow: 0 0 5px var(--accent-color);
}

.submit-button {
  width: 100px;
  background-color: #fff;
  padding: 10px;
  border: 1px;
  border-radius: 5px;
  margin-top: 10px;
  align-self: center;
}

label {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  height: 30px;
  display: flex;
  align-items: flex-end;
}

.line-two {
  display: flex;
  flex-direction: row;
  column-gap: 20px;
}

#phone-wrapper {
  width: 60%;
}

#guest-wrapper {
  width: 40%;
}

.checkbox-label {
  display: inline-block;
  height: auto;
  font-size: 0.8rem;
  font-weight: 300;
  text-transform: none;
  align-items: center;
  justify-content: center;
}

.submit-button {
  color: var(--background-light);
  background-color: var(--primary-color);
  font-family: 'Inter';
  text-transform: uppercase;
  font-weight: 200;
  font-size: 0.8rem;
  border-radius: 500px;
  width: auto;
  padding: 10 20px 10 20px;
}

input[type=checkbox] {
  transform: scale(1.3);
  margin-right: 10px;
  outline: 0px;
}

.hidden {
  visibility: hidden;
  display: none;
}

#successful-rsvp {
  max-width: 300px;
}

.success-header {
  font-size: 3rem;
  font-family: 'Source Serif 4';
  font-weight: 300;
}

.rsvp-logo {
  mix-blend-mode: lighten;
}