span {
  font-weight: 800
}

#customPageTitle {
  display: none
}

.formContainer {
  padding: 70px 70px 50px;
  width: 92%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0 auto 4rem;
  gap: 31px;
  font-size: 1.6rem;
}

.image {
  width: 50%
}

.formContainer .title {
  font-size: 25px;
  line-height: 2.2rem;
  letter-spacing: .07em;
  width: 90%;
  font-weight: 400;
  text-align: left;
  text-transform: uppercase
}

.subtitleLink {
  text-align: left;
  width: 90%;
  margin-top: 1rem;
  margin-bottom: 1.2rem;
  font-size: 15px
}

.subtitle {
  text-align: left;
  width: 90%;
  margin-bottom: 2.2rem;
  font-size: 15px;
  font-weight: 300;
}

.form {
  width: 90%;
  height: auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  gap: 20px;
  grid-template-columns: repeat(2,1fr)
}

.brideAGroomContainer {
  width: 100%;
  height: auto;
  display: grid;
  flex-direction: column;
  align-items: center;
  color: var(--grey);
  grid-template-rows: repeat(2,1fr);
}

.formCont {
  width: 44%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--text);
}

.form input {
  width: 90%;
  height: 2.5rem;
  border-bottom: 1px solid var(--third);
  padding: 0;
  box-sizing: border-box;
  border-radius: 0;
  line-height: 3.5rem;
  font-weight: 400;
  font-size: 13px;
  color: #020003;
  background: transparent;
  position: relative;
  z-index: 1;
  cursor: pointer;
  margin-bottom: 12px;
}

.form input::-webkit-input-placeholder {
  opacity: 1;
  color:#020003;
}

.form input:-moz-placeholder {
  opacity: 1;
  font-weight: 300
}

.form input::-moz-placeholder {
  opacity: 1;
  font-weight: 300
}

.form input:-ms-input-placeholder {
  opacity: 1;
  font-weight: 300
}

.form input::-ms-input-placeholder {
  opacity: 1;
  font-weight: 300
}

.brideGroomInfoContainer {
  height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}

.brideGroomInfo {
  width: 100%;
}

.brideGroomInfo.phoneNumber {
  width: 50%;
  margin-bottom: 1.5rem;
  margin-top: 0rem;
  float: right
}

.weddingDetailsContainer {
  width: 100%;
  gap: 0rem 3rem;
  grid-template-columns: repeat(2,1fr);
  grid-row: 2/3
}

.calendarIconContainer {
  position: absolute;
  right: 2px;
  height: 100%;
  display: flex;
  width: 4rem;
  align-items: center;
  box-sizing: border-box;
  justify-content: center;
  border-left: 1px solid var(--grey);
  z-index: 0;
  background: transparent;
  bottom: 6px;
}

.calendarIcon {
  width: 16px;
}

.weddingDateContainer {
  grid-column: 1/2;
  grid-row: 1/2;
  position: relative;
  width: 50%;
  float: left
}

#weddingComments {
  height: 85px;
  resize: none;
  grid-column: 2/3;
  grid-row: 2/2;
  font-weight: 400;
  font-size: 13px;
  color: #020003;
  border: none;
  border-bottom: 1px solid var(--third);
  box-sizing: border-box;
  width: 100%;
  margin-top: 0
}
textarea::-webkit-input-placeholder {
color: #020003;;
}

.sendContainer {
  width: 90%;
  display: flex;
  justify-content: flex-end
}

.formContainer .sendForm {
  width: 100%;
  border: 1px solid #977046;
  border-radius: 100px;
  color: #fff;
  background: #977046;
  line-height: 3rem;
  margin-top: 2.2rem;
  box-sizing: border-box;
  font-size: 17px;
  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: #977046;
  background: var(--white)
}

@media screen and (max-width: 1100px) {
  .formContainer {
      width:90%;
      display: flex;
      flex-direction: column;
      align-items: center
  }

  .image {
      width: 100%;
      margin-top: 30px;
  }

  .formCont {
      width: 100%;
      margin-top: 30px
  }

  .formContainer .title {
      font-size: 25px;
      line-height: 28px;
      width: 100%
  }

  .subtitleLink,.subtitle,.form,.sendContainer {
      width: 100%
  }

  .brideGroomInfoContainer {
      flex-direction: column
  }

  .brideGroomInfo {
      width: 100%;
  }

  .weddingDetailsContainer {
      display: flex;
      flex-direction: column
  }

  #weddingComments {
      width: 100%;
      height: 12rem
  }

  .formContainer .sendForm {
      width: 100%
  }

  .brideAGroomContainer {
      display: flex;
      flex-direction: column;
      margin-bottom: 0px;
      gap: 0px;
  }

  .weddingDateContainer,.brideGroomInfo.phoneNumber {
      width: 100%
  }
}
@media screen and (max-width: 768px) {
  .formContainer{    
  padding: 0;
  }
  .formCont{
    margin-top:10px;
  }
  .formContainer .title{
    margin-bottom:20px;
  }
  .form input {
    width: 100%;
    
  }
}