#customPageTitle {
  display: none;
}

.formContainer {
  width: 85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--black);
  margin: 5rem auto 8rem;
  font-size: 1.6rem;
}
.formContainer h1 {
  font-size: 28px;
  line-height: 3.2rem;
  /* letter-spacing: 0.07em; */
  width: 100%;
  text-align: center;
  text-transform: uppercase;
}
.formContainer h2 {
  text-align: left;
  width: 100%;
  margin-top: 5rem;
  margin-bottom: 2.2rem;
}
.form {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.form input {
  width: 100%;
  height: 4rem;
  border: 1px solid #D8D0BB;
  padding: 0;
  box-sizing: border-box;
  border-radius: 0;
  line-height: 4rem;
  font-size: 1.2rem;
  color: var(--black);
  text-indent: 1.2rem;
  background: transparent;
}
.form input::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: var(--black);
  opacity: 1;
  font-family: "Gotham";
}
.form input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: var(--black);
  opacity: 1;
  font-family: "Gotham";
  font-weight: 300;
}
.form input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: var(--black);
  opacity: 1;
  font-family: "Gotham";
  font-weight: 300;
}
.form input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--black);
  opacity: 1;
  font-family: "Gotham";
  font-weight: 300;
}
.form input::-ms-input-placeholder {
  /* Microsoft Edge */
  color: var(--black);
  opacity: 1;
  font-weight: 300;
  font-family: "Gotham";
}

.brideGroomInfoContainer {
  height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brideGroomInfo {
  width: calc((100% / 3) - 1.9rem);
  margin-bottom: 2.2rem;
}
.brideGroomInfo.phoneNumber {
  width: 100%;
  margin-bottom: 0;
  margin-top: 2.2rem;
}

.weddingDetailsContainer {
  width: 100%;
  display: grid;
  gap: 0rem 3rem;
  grid-template-columns: repeat(3, 1fr);
}
.calendarIconContainer {
  position: absolute;
  right: 0;
  height: 100%;
  display: flex;
  width: 4rem;
  align-items: center;
  box-sizing: border-box;
  justify-content: center;
  border-left: 1px solid #D8D0BB;
  z-index: 0;
  background: transparent;
  top: 0;
}

.calendarIcon {
  width: 1.6rem;
}
.weddingDateContainer {
  grid-column: 1/2;
  grid-row: 1/2;
  margin-bottom: 0rem;
  position: relative;
}
#weddingComments {
  height: 100%;
  resize: none;
  border: 1px solid #D8D0BB;
  grid-column: 2/4;
  grid-row: 1/3;
  font-weight: 300;
  font-family: "Gotham";
  font-size: 1.2rem;
  color: var(--green);
  padding-left: 1.2rem;
  padding-top: 1.2rem;
  box-sizing: border-box;
}
.sendContainer {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.formContainer .sendForm {
  width: calc((100% / 3) - 2.85rem);
  border: 1px solid var(--dark-brown);
  color: var(--white);
  background: var(--dark-brown);
  line-height: 4rem;
  margin-top: 2.2rem;
  box-sizing: border-box;
  text-align: center;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: color 0.4s;
  -o-transition: color 0.4s;
  transition: color 0.4s;
}
.formContainer .sendForm:hover {
  color: var(--dark-brown);
  background: var(--white);
}
@media screen and (max-width: 1100px) {
  .formContainer {
    width: 90%;
  }
  .brideGroomInfoContainer {
    flex-direction: column;
  }
  .brideGroomInfo {
    width: 100%;
  }
  .weddingDetailsContainer {
    display: block;
  }
  #weddingComments {
    margin-top: 2.2rem;
    width: 100%;
    height: 12rem;
  }
  .formContainer .sendForm {
    width: 100%;
  }
}
