.contact-page-inner {
  max-width: 1200px;
  width: 100%;
  margin: 100px auto;
  display: flex;
  flex-flow: row wrap;
  row-gap: 80px;
  justify-content: space-between;
}

.contact-page-section {
  padding-inline: 20px;
  box-sizing: border-box;
  display: grid;
  place-items: center;
  min-height: 100vh;
}

.contact-page-text {
  max-width: 690px;
  margin-bottom: 70px;
}
.contact-page-text h2 {
  margin-bottom: 12px;
}
@media (max-width: 426px) {
  .contact-page-text {
    margin-bottom: 40px;
  }
}
.contact-page-form {
  max-width: 588px;
}
.contact-page-form-label {
  margin-bottom: 15px;
  display: block;
}
.contact-page-form-input {
  width: 100%;
  height: 46px;
  padding: 11px 16px;
  box-sizing: border-box;
  border-radius: 8px;
  background-color: hsl(0, 0%, 97%);
  margin-bottom: 28px;
}
.contact-page-form-send {
  padding-block: 13px;
  width: 100%;
  background-color: var(--dark);
  color: var(--white);
  border-radius: 8px;
  text-transform: uppercase;
}
.contact-page-right {
  max-width: 429px;
  width: 100%;
  align-self: flex-end;
}
.contact-page-address > *:not(last-of-type) {
  margin-bottom: 20px;
}
.contact-page-address:not(:last-of-type) {
  margin-bottom: 48px;
}
.contact-page-socials {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0;
  list-style: none;
}
.contact-page-socials .decorator {
  background-color: var(--dark-30);
  width: 1px;
  height: 12px;
}

.contact-page-form-send:disabled {
  color: gray;
  background: unset;
  cursor: default;
}
.contact-page-form-send:disabled:hover {
  background: unset;
  color: gray !important;
}
.contact-page-form-send:disabled:hover::before {
  opacity: 0 !important;
}

select.contact-page-form-input {
  color: hsl(0, 0%, 70%);
  position: relative;
  background-image: url("../images/select-dropdown.svg");
  background-repeat: no-repeat;
  background-position: center right 16px;
}

textarea.contact-page-form-input {
  height: 165px;
}

.shadow-me {
  position: relative;
}

.shadow-me::after {
  content: "";
  inset: 0;
  width: 442px;
  background-color: red;
  position: absolute;
  z-index: -1;
}

/*# sourceMappingURL=contact-us.css.map */
