/* [project]/styles/ContactCode.module.css [app-client] (css) */
.ContactCode-module__SmrVDG__code {
  counter-reset: line;
  background-color: var(--article-bg);
  border: 1px solid #ffffff1a;
  border-radius: 4px;
  padding: 1.5rem;
  font-size: 1.2rem;
  line-height: 2rem;
  position: relative;
  overflow: hidden;
}

.ContactCode-module__SmrVDG__code:before {
  content: "";
  background: var(--accent-color);
  width: 100%;
  height: 4px;
  position: absolute;
  top: 0;
  left: 0;
}

.ContactCode-module__SmrVDG__line {
  padding-left: 2.5rem;
  position: relative;
}

.ContactCode-module__SmrVDG__line:before {
  content: counter(line);
  counter-increment: line;
  color: gray;
  opacity: .8;
  margin-right: 1rem;
  font-size: .9rem;
  position: absolute;
  top: 0;
  left: 0;
}

.ContactCode-module__SmrVDG__code a {
  color: var(--accent-color);
  text-decoration: none;
}

.ContactCode-module__SmrVDG__code a:hover {
  text-decoration: underline;
}

.ContactCode-module__SmrVDG__className {
  color: var(--accent-color);
}

@media screen and (max-width: 600px) {
  .ContactCode-module__SmrVDG__code {
    padding: 1.25rem 1rem;
    font-size: .85rem;
    line-height: 1.5rem;
  }

  .ContactCode-module__SmrVDG__line {
    padding-left: 2rem;
  }

  .ContactCode-module__SmrVDG__line:before {
    font-size: .7rem;
  }
}

/* [project]/styles/ContactPage.module.css [app-client] (css) */
.ContactPage-module__aMzO-G__layout {
  max-width: 900px;
  height: 100%;
  margin: 0 auto;
}

.ContactPage-module__aMzO-G__container {
  justify-content: center;
  display: flex;
}

.ContactPage-module__aMzO-G__container > * {
  flex: 1;
  max-width: 600px;
}

.ContactPage-module__aMzO-G__container h1 {
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.ContactPage-module__aMzO-G__flex {
  gap: 1rem;
  display: flex;
}

.ContactPage-module__aMzO-G__pageTitle {
  color: var(--accent-color);
  letter-spacing: -.03em;
  text-align: center;
  margin-bottom: 1rem;
  padding-top: 3rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.ContactPage-module__aMzO-G__pageSubtitle {
  color: #ffffffb3;
  text-align: center;
  max-width: 600px;
  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}

@media screen and (max-width: 1200px) {
  .ContactPage-module__aMzO-G__container {
    padding: 2rem 1rem;
    display: block;
  }

  .ContactPage-module__aMzO-G__container > div:first-child {
    border-right: none;
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 600px) {
  .ContactPage-module__aMzO-G__flex {
    display: block;
  }

  .ContactPage-module__aMzO-G__form input {
    font-size: .85rem;
  }

  .ContactPage-module__aMzO-G__container {
    padding: 1.5rem .75rem;
  }

  .ContactPage-module__aMzO-G__pageTitle {
    font-size: 1.75rem;
  }

  .ContactPage-module__aMzO-G__pageSubtitle {
    margin-bottom: 2rem;
    font-size: 1rem;
  }
}

/*# sourceMappingURL=styles_09mn467._.css.map*/