@font-face {
  font-family: "FormRegular";
  src: url("./Roobert-Regular.woff2");
}
@font-face {
  font-family: "FormBold";
  src: url("./Rogan-Bold.woff2");
}
* {
  margin: 0;
  padding: 0;
  font-family: "FormRegular";
  color: #101D2E;
}

body {
  width: 100vw;
  background: radial-gradient(circle, rgb(244, 241, 234) 0%, rgb(255, 221, 198) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.step-content {
  max-width: 500px;
  padding: 4vh 4vw;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.active {
  display: flex;
}

h2 {
  font-family: "FormBold";
  font-size: 24px;
  text-align: center;
  padding-bottom: 30px;
}

.step-input {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 10px;
  padding-bottom: 20px;
}

.btn_dark {
  background-color: #101D2E;
  color: white;
  font-size: 16px;
  padding: 12px 18px;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}
.btn_dark svg {
  fill: white;
  padding-left: 4px;
}

.select_div {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.select_div select {
  -webkit-appearance: button;
  -webkit-padding-end: 20px;
  -webkit-padding-start: 2px;
  background-color: transparent;
  background-position: center right;
  background-repeat: no-repeat;
  border: none;
  border-bottom: 1px solid #101D2E;
  color: #101D2E;
  font-size: inherit;
  margin: 0;
  overflow: hidden;
  padding-top: 2px;
  padding-bottom: 2px;
  text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 18px;
  min-width: 300px;
  padding-bottom: 5px;
  text-align: center;
}
.select_div svg {
  fill: #101D2E;
  position: absolute;
  z-index: 9;
  right: 0;
}

input[type=text], input[type=tel], input[type=email] {
  background-color: transparent;
  background-position: center right;
  background-repeat: no-repeat;
  border: none;
  border-bottom: 1px solid #101D2E;
  color: #101D2E;
  font-size: inherit;
  margin: 0;
  overflow: hidden;
  padding-top: 2px;
  text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 18px;
  width: 90vw;
  max-width: 300px;
  padding-bottom: 5px;
  text-align: center;
}

textarea {
  background-color: transparent;
  background-position: center right;
  background-repeat: no-repeat;
  border: 2px solid #101D2E;
  color: #101D2E;
  font-size: inherit;
  margin: 0;
  overflow: hidden;
  padding-top: 2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 18px;
  width: 90vw;
  max-width: 500px;
  padding-bottom: 5px;
  text-align: center;
  resize: none;
  border-radius: 4px;
}/*# sourceMappingURL=style.css.map */