* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

@font-face {
  font-weight: 800;
  font-family: "SF Pro Display";
  src: url("./fonts/SF-Pro-Display-Heavy.otf");
}
@font-face {
  font-weight: 700;
  font-family: "SF Pro Display";
  src: url("./fonts/SF-Pro-Display-Bold.otf");
}
@font-face {
  font-weight: 600;
  font-family: "SF Pro Display";
  src: url("./fonts/SF-Pro-Display-Semibold.otf");
}
html,
body {
  background-color: #181818;
  font-family: "SF Pro Display";
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: white;
}
html form,
body form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #222222;
  border-radius: 15px;
  width: 920px;
}
@media screen and (max-width: 920px) {
  html form,
  body form {
    width: calc(100% - 2rem);
    margin: 1rem;
  }
}
html form h1,
body form h1 {
  font-weight: 800;
  font-size: 48px;
  line-height: 57px;
  text-align: center;
  letter-spacing: 0.02em;
  font-variant: all-small-caps;
  margin-top: 39px;
}
html form input,
body form input {
  text-align: center;
  outline: none;
  border: none;
  background: #161616;
  border-radius: 15px;
  width: calc(100% - 240px);
  font-size: 20px;
  margin: 21px 0 0;
  padding: 20px;
  color: white;
}
@media screen and (max-width: 650px) {
  html form input,
  body form input {
    width: calc(100% - 2rem);
  }
}
html form input::-webkit-input-placeholder,
body form input::-webkit-input-placeholder {
  text-align: center;
  font-weight: 700;
  font-size: 32px;
  line-height: 38px;
  letter-spacing: 0.02em;
  color: #C6C6C6;
  transform: translateY(0.25rem);
}
html form input:-moz-placeholder,
body form input:-moz-placeholder {
  text-align: center;
  font-weight: 700;
  font-size: 32px;
  line-height: 38px;
  letter-spacing: 0.02em;
  color: #C6C6C6;
  transform: translateY(0.25rem);
}
html form input::-moz-placeholder,
body form input::-moz-placeholder {
  text-align: center;
  font-weight: 700;
  font-size: 32px;
  line-height: 38px;
  letter-spacing: 0.02em;
  color: #C6C6C6;
  transform: translateY(0.25rem);
}
html form input:-ms-input-placeholder,
body form input:-ms-input-placeholder {
  text-align: center;
  font-weight: 700;
  font-size: 32px;
  line-height: 38px;
  letter-spacing: 0.02em;
  color: #C6C6C6;
  transform: translateY(0.25rem);
}
html form p,
body form p {
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  text-align: center;
  letter-spacing: 0.02em;
  color: #C6C6C6;
  margin: 30px 60px;
}
@media screen and (max-width: 768px) {
  html form p,
  body form p {
    font-size: 20px;
  }
}
@media screen and (max-width: 650px) {
  html form p,
  body form p {
    margin: 30px 1rem;
  }
}

.submit {
  background-color: #A77258;
  border-radius: 10px;
  margin-bottom: 59px;
  width: 355px;
  margin: 0 0 56px;
  cursor: pointer;
  z-index: 5;
}
.submit[value] {
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  text-align: center;
  letter-spacing: 0.02em;
  font-variant: all-small-caps;
  padding: 5px 70px;
  text-decoration: none;
  color: inherit;
}
@media screen and (max-width: 1600px) {
  .submit {
    font-size: 20px;
  }
}
