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

body,
input {
  font-family: 'Poppins', sans-serif;
}

body {
  background: #E5E5E5;
}

body::before {
  content: "";
  width: 100%;
  height: 436px;
  background: #535971;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}

form {
  background: white;
  min-height: 300px;
  margin-top: 42px;
  border-radius: 20px 20px 0 0;
  padding: 34px 64px;
}

h1 {
  font-family: 'Staatliches', cursive;
  width: 163px;
  margin-top: 140px;
  font-size: 48px;
  line-height: 60px;
  font-weight: normal;
  color: white;
  margin-bottom: 18px;
}

h2 {
  font-family: 'Staatliches', cursive;
  font-size: 20px;
  line-height: 34px;
  color: #535971;
  font-weight: normal;
  margin-top: 32px;
}

p {
  width: 417px;
  font-size: 20px;
  line-height: 30px;
  color: white;
}

.name {
  display: flex;
  gap: 22px;
}

.page {
  width: 750px;
  margin: auto;
}

.col-3 {
  display: flex;
  gap: 32px;
}

fieldset legend {
  font-family: 'Staatliches', cursive;
  font-size: 24px;
  line-height: 34px;
  color: #535971;
  border-bottom: 1px solid #E6E6F0;
  padding-bottom: 16px;
  margin-top: 30px;
}

fieldset {
  border: none;
}

.input-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.fieldset-wrapper {
  display: flex;
  flex-direction: column;
}

.input-wrapper label {
  font-size: 14px;
  line-height: 24px;
  color: #4E4958;
  margin-top: 36px;
  margin-bottom: 8px;
}

.input-wrapper label span {
  margin-left: 12px;
  font-size: 12px;
  line-height: 20px;
  color: #C1BCCC;
}

.input-wrapper label span:hover {
  color: #635d70;
}

.input-wrapper input,
.input-wrapper textarea,
.input-wrapper select {
  background: #FAFAFC;
  border: 1px solid #E6E6F0;
  border-radius: 8px;
  height: 56px;
  padding: 0 24px;
  font-size: 16px;
  line-height: 26px;
  color: #635d70;
  width: 100%;
}

.input-wrapper textarea {
  padding: 2px 5px;
  height: 200px;
}

.input-wrapper select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
}

footer {
  background: #535971;
  height: 160px;
  width: 750px;
  display: flex;
  flex-direction: column;
  padding: 50px 71px;
  margin: 0 auto 366px;
  border-radius: 0px 0px 20px 20px;
}

footer button {
  height: 56px;
  background: #FF5374;
  border-radius: 20px;
  font-family: 'Staatliches', cursive;
  font-size: 20px;
  line-height: 26px;
  color: white;
  border: none;
}

button:hover {
  background: #f1395e;
}