#page {
  width: 100%;
  max-width: 1920px;
  height: 100%;
  margin: auto;
  overflow: hidden;
}

/* FORMS */
.l2_form_container {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 30px;
  flex-wrap: wrap;
}
.form_col_12 {
  width: calc(100% - 30px);
}
.form_col_6 {
  width: calc(50% - 30px);
}

.form_contact {
  display: flex;
  flex-direction: column;
  align-items: left;
  text-align: left;
  gap: 30px;
  max-width: calc(100% - 30px);
  margin: auto;
}

input[type=text],
input[type=email],
input[type=tel],
textarea,
select {
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  padding: 16px 24px !important;
  background: #FFFFFF;
  border: 0.5px solid #7A7A7A;
  border-radius: 4px;
  width: 100%;
  cursor: pointer;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
textarea:focus,
select:focus {
outline: 0.5px solid rgba(0, 0, 0, 0.1);
}
::placeholder {
  color: #7A7A7A;
}
input[type=submit] {
display: flex;
    white-space: pre-wrap;
    text-align: center;
    padding: 18px;
    line-height: 1.4;
    cursor: pointer;
}
