:root{
  --input-box-color: white;
  --form-background-color: #f1f1f1;
  --input-border-color:#d2d2d2;
  --form-accent-color: var(--accent-color);
}
.form-wrapper{
  background-color: var(--form-background-color);
  box-shadow: var(--box-shadow);
  padding-left: var(--responsive-padding);
  padding-right: var(--responsive-padding);
  padding-bottom: calc(var(--responsive-padding)/2);
}
.form{
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 0;
  margin-bottom: 30px;
}
.formTitle{
  margin-top: 15px;
}
.formTitle h3{
  padding-bottom: 0;
}
.form h4{
  font-size: 15px;
}
.form-grid-container-one{
  position: relative;
  overflow: hidden;
  width:100%;
  height: 100%;
  max-width: var(--bodyMaxWidth);
  margin: auto;
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(9, 1fr);
}
.form-group{
  height: 100%;
  margin-right: 30px;
  min-height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.form-group.name , .form-group.subject{
  justify-content: flex-start;
}
#lastName.form-control{
  margin-bottom: 0;
  margin-top: auto;
}
.form-group.reCaptcha{
  justify-content:center;
}
.form-label h4{
  margin-top: 15px;
  margin-bottom: 15px;
  padding-bottom: 0;
}
.form-label.subjectDropdown{
  margin-top: 0;
  padding: 0;
  margin-bottom: auto;
  height: 45px;
  background-color: var(--input-box-color);
  border-radius: 0;
  border: 1px var(--input-border-color);
  border-style: solid solid solid solid;
}
.form option {
  border: 1px var(--input-border-color);
  border-style: solid solid solid solid;
}
.form-control{
  box-shadow: none;
  background-color: var(--input-box-color);
  border-radius: 0;
  border: 1px var(--input-border-color);
  border-style: solid solid solid solid;
  width: 100%;
  font-size: 1.25rem;
  transition: all .5s;
  margin: 0;
  height: 45px;
}
#message.form-control{
  min-height: 150px;
  margin-top: 0;
  margin-bottom: 0;
}
.form-control::placeholder{
  color: #aaa;
}
.form-control:focus{
  box-shadow: none;
  border-color: var(--form-accent-color);
  outline: none;
}
.form-group.button{
  justify-content: flex-end;
}
.form-button{
  background: var(--form-accent-color);
  border-color: var(--form-accent-color);
  border-radius: 2px;
  height: 45px;
  transition: 200ms;
  height: 100%;


  border: none;
  font-size: 16px;
  color: black;
  padding: 8px 16px;
  background-color: var(--form-accent-color);
  border-color: var(--form-accent-color);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  
}
.form-button h4{
  margin-top: auto;
  margin-bottom: auto;
  padding:5px;
}
#submit:disabled:hover {
  cursor: not-allowed;
  pointer-events: all !important;
}
.form-button:hover{
  transform: scale(1.03);
}
textarea{
  resize:none;
}

/* Column 3 style --------------------------------- */
.form-group.phone {
justify-content: flex-start;
}
.form-group.phone .horizontal-container{
  display: flex;
  flex-direction: row;
  align-items: center ;
}
.form-group.phone h3{
  font-size: 30px;
  margin-top: 45px;
}
.form-group.phone .horizontal-container h4{
  font-size: 30px;
  margin-left: 15px;
}
.form-group.phone .horizontal-container p{
  font-size: 15px;
  margin-left: 15px;
}
.form-group.phone .icon-phone{
  height: 30px;
  width: 30px;
  background-image: url(../images/icons/phone-icon-orange.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.form-group.phone .icon-tick{
  height: 20px;
  width: 20px;
  background-image: url(../images/icons/tick-icon-orange.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 600px) {
  .form-grid-container-one{
    grid-auto-flow: row;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto;
  }
}
