@property --1 {
  syntax: "<color>";
  inherits: false;
  initial-value: #493C62;
}
@property --2 {
  syntax: "<color>";
  inherits: false;
  initial-value: #827B90;
}
h1, h2, h3, h4, h5, h6, p, label {
  margin: 0;
}

h1 {
  color: var(--1);
  margin: 30px 0;
}

@font-face {
  font-family: "Gotham Pro";
  src: url("/fonts/GothamPro/gothampro.ttf");
}
@font-face {
  font-family: "Gotham Pro Bold";
  src: url("/fonts/GothamPro/gothampro_bold.ttf");
}
@font-face {
  font-family: "Gotham Pro Black";
  src: url("/fonts/GothamPro/gothampro_black.ttf");
}
@font-face {
  font-family: "Gotham Pro Light";
  src: url("/fonts/GothamPro/gothampro_light.ttf");
}
@font-face {
  font-family: "Gotham Pro Medium";
  src: url("/fonts/GothamPro/gothampro_medium.ttf");
}
input, textarea {
  font-family: "Gotham Pro";
}

body {
  margin: 0;
  padding: 0;
  font-family: "Gotham Pro";
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  box-sizing: border-box;
  position: relative;
  overflow: auto;
  padding: 48px;
}

#background {
  background-image: url("/img/5300300c37f11f76c4a9042970dcaa2b.png");
  background-size: 100% 100%;
  width: 110%;
  height: 110%;
  position: fixed;
  top: 0;
  left: 0;
  transform-origin: left;
}

form {
  width: 100%;
  height: 100vh;
  max-width: 714px;
  height: 723px;
  padding: 27px 43px;
  box-sizing: border-box;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.1);
  position: relative;
}
form .form-content {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
form .form-content .input-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
form .form-content .input-group input[type=submit] {
  padding: 12px 51px;
  border: 2px solid var(--1);
  outline: none;
  opacity: 0.5;
  border-radius: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-family: "Gotham Pro Medium";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
form .form-content .input-group .input-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: start;
  gap: 5px;
  position: relative;
}
form .form-content .input-group .input-wrap .field-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}
form .form-content .input-group .input-wrap .field-wrap input[field] {
  width: 100%;
  box-sizing: border-box;
  height: 45px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(247, 246, 249, 0.5);
  outline: none;
  border: none;
  font-size: 20px;
  padding: 9px;
}
form .form-content .input-group .input-wrap .field-wrap::after {
  content: "";
  background: #F3F2F5;
  height: 2px;
  width: calc(100% - 18px);
  position: absolute;
  bottom: 5px;
}
form .form-content .input-group .input-wrap label {
  color: var(--2);
  text-align: center;
  font-family: "Gotham Pro Medium";
  font-size: 20px;
  font-style: normal;
  line-height: normal;
  padding: 0 10px;
}

::-moz-selection {
  background: #000;
  color: #fff;
}

::selection {
  background: #000;
  color: #fff;
}

.flex {
  display: flex;
  width: 100%;
}
.flex.row {
  flex-direction: row;
}
.flex.jc-c {
  justify-content: center;
}
.flex.jc-r {
  justify-content: right;
}
.flex.jc-l {
  justify-content: left;
}
.flex.jc-sb {
  justify-content: space-between;
}
.flex.jc-sa {
  justify-content: space-around;
}
.flex.ai-c {
  align-items: center;
}/*# sourceMappingURL=style.css.map */