/*
Theme Name: Hello Elementor Child
Template: hello-elementor
Description: Hello Elementor Child Theme
Version: 1.0
*/

input.invalid {
  background-color: #ffdddd;
}
#regForm {
  background-color: #ffffff;
  font-family: "Inter", sans-serif;
  padding: 40px;
  border-radius: 15px;
}

input#address {
  width: 80%;
  border: 0;
  height: 50px;
  box-shadow: 0 0 2px 0px #00000052;
  padding: 10px 20px;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}
.tab {
  display: none;
}

button {
  background-color: #04aa6d;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-size: 17px;
  font-family: Raleway;
  cursor: pointer;
  border-radius: 50px;
}

button:hover {
  opacity: 0.8;
}

#prevBtn {
  background-color: #bbbbbb;
}

.step {
  height: 10px;
  width: 15%;
  margin: 0 2px;
  background-color: #F5AD4D;
  border: none;
  /* border-radius: 50%; */
  display: inline-block;
  opacity: 0.5;
}

.step.active {
  opacity: 1;
}

.step.finish {
  background-color: #f5ad4d;
}

.rounded {
  border-radius: 50px !important;
}

/* Shared option grid */
.selection {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

/* Shared box design for all clickable radio options */
label.option-box {
  width: 35%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid gray;
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
  transition: border-color 0.3s, background-color 0.3s;
  text-align: center;
}

/* Highlight when selected */
label:has(input:checked) {
  border-color: #f5ad4d;
  background-color: #f5ad4d66;
}

/* Images inside boxes */
label.option-box img {
  width: auto;
  height: 80px;
  margin-bottom: 8px;
}

.buttons {
  overflow: auto;
  display: flex;
  justify-content: center;
  gap: 10px;
}
/* .tab-4 label.option-box,
      .tab-5 label.option-box {
        width: 23% !important;
      } */
@media (max-width: 800px) {
  label.option-box {
    width: 30%;
  }
  .selection {
    flex-wrap: wrap;
  }
  .tab h3 {
    font-size: 22px;
  }
}

@media (max-width: 500px) {
  .selection {
    flex-wrap: wrap;
  }
  .tab h3 {
    font-size: 21px;
  }
  label.option-box {
    width: 45%;
  }
  input#address {
    width: 100%;
    font-size: 18px;
  }
  button#nextBtn {
    width: 35%;
    font-size: 18px;
  }
  button#prevBtn {
    width: 35%;
    font-size: 18px;
  }

  .buttons button {
    width: 20%;
  }
  #regForm {
    padding: 35px;
  }
}
button#nextBtn {
  background-color: var(--e-global-color-primary);
  font-family: "Inter", Sans-serif;
  font-size: 18px;
  font-weight: 500;
  border-radius: 5px 5px 5px 5px;
  padding: 5px 15px;
  color: #fff;
  border: 0;
}
button#prevBtn {
  background-color: #fff;
  font-family: "Inter", Sans-serif;
  font-size: 18px;
  font-weight: 500;
  border-radius: 5px 5px 5px 5px;
  padding: 5px 15px;
  color: #f5ad4d;
  border: 1px solid #f5ad4d;
}

#address {
  outline: 0px;
}
