@import url("https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500&family=Caprasimo&display=swap");
* {
  font-family: "Poppins";
  font-size: 16px;
}

main {
  padding: 140px 20px 150px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 700px;
  width: 100%;
}

form .page_step {
  color: #afafaf;
  font-size: 14px;
  margin-bottom: 10px;
}

form .page_title {
  font-size: 24px;
  text-align: center;
}

form .subtitle {
  color: #5a5757;
  font-size: 14px;
  margin-bottom: 38px;
  text-align: center;
}

.price_list {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  max-width: 600px;
  width: 100%;
  justify-content: center;
}
.price_list.website_revamp {
  flex-direction: column;
  align-items: center;
}

.price_list label {
  margin: 6px 14px;
  width: 45%;
  padding: 12px 30px;
  font-size: 20px;
  background-color: #f3f0f0;
  margin-bottom: 22px;
  border-radius: 10px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(25px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background-color 0.5s, color 0.5s;
  cursor: pointer;
  font-family: "Baloo 2", cursive;
  font-weight: 500;
}

.price_list label input {
  position: absolute;
  opacity: 0;
}

.price_list label.active {
  background-color: #294635;
  color: #d7ffad;
}

.submit_wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  display: none;
}

.submit_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 25px;
  background-color: #294635;
  color: white;
  border: none;
  font-weight: 700;
  border-radius: 5px;
  width: 125px;
  cursor: pointer;
}

@media (max-width: 480px) {
  .price_list {
    flex-direction: column;
    max-width: 100%;
  }
  .price_list label {
    margin: 6px 0px;
    width: 100%;
  }
}
