@import url("https://fonts.googleapis.com/css2?family=Cabin&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Cabin", sans-serif;
}

body {
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
  background-color: #f6f6f6;
}

.header {
  background-color: #27AE60;
  color: white;
  font-weight: 600;
}

.page-indicator {
  text-align: center;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-indicator #indicator {
  margin-left: 30px;
}
.page-indicator #indicator p {
  font-size: 13px;
}
.page-indicator #indicator .number-hold {
  position: relative;
  text-align: center;
  width: 40px;
  height: 40px;
  left: calc(50% - 20px);
  font-weight: bold;
  border-radius: 50%;
  background-color: #ffffff;
}
.page-indicator #indicator .number-hold span {
  position: absolute;
  width: 20px;
  height: 20px;
  left: calc(50% - 10px);
  top: calc(50% - 10px);
}
.page-indicator #indicator .active {
  background-color: #27AE60;
  color: white;
}

.holder {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.holder .box-1 {
  width: 35%;
  box-shadow: 5px 5px 10px rgba(77, 77, 77, 0.1);
  background-color: white;
  text-align: center;
}
.holder .box-1 .gray {
  color: gray;
}
.holder .box-1 .f-12 {
  font-size: 13px;
}
.holder .box-1 form {
  font-size: 13px;
}
.holder .box-1 form .btn-next {
  width: 150px;
  padding: 12px;
}
.holder .box-2 {
  display: none;
  width: 35%;
  box-shadow: 5px 5px 10px rgba(77, 77, 77, 0.1);
  background-color: white;
  text-align: center;
}
.holder .box-2 .gray {
  color: gray;
}
.holder .box-2 .f-12 {
  font-size: 13px;
}
.holder .box-2 form {
  font-size: 13px;
}
.holder .box-2 form .btn-next {
  width: 150px;
  padding: 12px;
}

.box-3 {
  display: none;
  width: 35%;
  box-shadow: 5px 5px 10px rgba(77, 77, 77, 0.1);
  background-color: white;
  text-align: center;
}
.box-3 .gray {
  color: gray;
}
.box-3 .f-12 {
  font-size: 13px;
}
.box-3 form {
  font-size: 13px;
}
.box-3 form .btn-next {
  width: 150px;
  padding: 12px;
}

@media screen and (max-width: 800px) {
  .header .h3 {
    font-size: 20px;
  }
  .page-indicator {
    text-align: center;
    width: 96%;
    position: relative;
    left: -2%;
  }
  .box-1 {
    width: 96% !important;
    box-shadow: 5px 5px 10px rgba(77, 77, 77, 0.1);
    background-color: white;
    text-align: center;
  }
  .box-1 .gray {
    color: gray;
  }
  .box-1 .f-12 {
    font-size: 13px;
  }
  .box-1 form {
    font-size: 13px;
  }
  .box-1 form .btn-next {
    width: 100px;
    padding: 12px;
    font-size: 13px;
  }
  .box-2 {
    width: 96% !important;
    box-shadow: 5px 5px 10px rgba(77, 77, 77, 0.1);
    background-color: white;
    text-align: center;
  }
  .box-2 .gray {
    color: gray;
  }
  .box-2 .f-12 {
    font-size: 13px;
  }
  .box-2 form {
    font-size: 13px;
  }
  .box-2 form .btn-next {
    width: 100px;
    padding: 12px;
    font-size: 13px;
  }
  .box-3 {
    width: 96% !important;
    box-shadow: 5px 5px 10px rgba(77, 77, 77, 0.1);
    background-color: white;
    text-align: center;
  }
  .box-3 .gray {
    color: gray;
  }
  .box-3 .f-12 {
    font-size: 13px;
  }
  .box-3 form {
    font-size: 13px;
  }
  .box-3 form .btn-next {
    width: 100px;
    padding: 12px;
    font-size: 13px;
  }
}/*# sourceMappingURL=style.css.map */