/*label {*/
/*  margin-left: 19px;*/
/*}*/

.form__container {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  background-color: white;
  /* width: 70%; */
  height: 600px;
  border-radius: 20px;
  position: relative;
  padding: 40px;
  overflow: hidden;
}
#clcktt {
  overflow: scroll;
}

.form__container .step {
  transition: all 0.5s;
  width: 100%;
  /* width: 500px; */
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  padding: 40px;
}

.form__container .form__header {
  margin-bottom: 20px;
}

.form__container .form__heading {
  font-size: 24px;
  text-transform: capitalize;
  font-weight: 600;
  color: var(--color-secondary-800);
  margin-bottom: 10px;
}

.form__container .form__description {
  color: var(--color-secondary-800);
  font-size: 16px;
  font-weight: 500;
}

.form__container .form__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  margin-bottom: 20px;
}

.form__container .form__btn {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.form__container .form__content .form__btn--option {
  width: 100%;
  padding: 20px;
  border-radius: 1000px;
  box-shadow: 3px 11px 20px rgba(0, 0, 0, 0.15);
  background: white;
  font-weight: 500;
  color: ##eb5b00;
  font-size: 16px;
}

.form__container .form__content .form__btn--option:hover {
  background: var(--color-secondary);
  color: white;
}

.form__container .form__btn--back {
  color: var(--color-secondary-800);
  text-decoration: underline;
  font-size: 18px;
  cursor: pointer;
}

.form__container .form__select {
  padding: 30px 20px 20px 20px;
  border-radius: 1000px;
  font-size: 16px;
  outline: 2px solid transparent;
  box-shadow: 3px 11px 20px rgba(0, 0, 0, 0.15);
  transition: 0.2s all;
  border: none;
  background-image: white;
  -webkit-appearance: none;
  background-image: url(image/arrow.html);
  background-repeat: no-repeat;
  background-position: top 50% right 15px;
}

.form__container .form__select::-ms-expand {
  display: none;
}
.form__container .form__select:focus {
  outline: 2px solid #eb5b00;
}

.form__container .form__btn--next,
.form__container .form__btn--submission {
  background-color: #eb5b00;
  border-radius: 1000px;
  padding: 20px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
}

.form__container .form__btn--next:hover,
.form__container .form__btn--submission:hover {
  color: white;
  background-color: #eb5b00;
}

.form__container .form__input-group {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: left;
  /* gap: 10px; */
}

.form__container .form__input {
  padding: 30px 20px 20px 20px;
  border-radius: 1000px;
  border: none;
  box-shadow: 3px 11px 20px rgba(0, 0, 0, 0.15);
}

.form__container .form__input:focus,
.form__container .form__input:valid {
  outline: 2px solid #eb5b00;
}

.form__container .form__input-group label {
  position: absolute;
  top: 51%;
  left: 20px;
  transform: translateY(-50%);
  color: grey;
  transition: color 0.3s ease, top 0.3s ease;
  text-shadow: 0px 0px #eb5b00;
  padding: 0;
  background-color: white;
  font-size: 16px;
  font-weight: 500;
}
.form__container .form__input-group select:focus + label,
.form__container .form__input-group select:valid + label,
.form__container
  .form__input-group
  .form__input:not(:placeholder-shown)
  + label,
.form__container .form__input-group .form__input:focus + label {
  color: #eb5b00;
  background-color: transparent;
  font-size: 14px;
  padding: 0;
  top: 25%;
}

.form__option-group {
  width: 100%;
}
.form__checkbox-group {
  display: flex;
  justify-content: left;
  gap: 10px;
  align-items: center;
  text-align: left;
  outline: none !important;
  margin-top: 10px;
}
.form__checkbox-group input {
  height: 15px;
  width: 15px;
}
.form__checkbox-group input:focus {
  outline: none !important;
}
.form__option-group label {
  cursor: pointer;
  padding: 20px 0;
  display: block;
  border-radius: 1000px;
  box-shadow: 3px 11px 20px rgba(0, 0, 0, 0.15);
  background: white;
  font-weight: 500;
  color: #eb5b00;
  font-size: 16px;
}

.form__option-group input {
  display: none;
}
.form__option-group input:checked + label {
  color: white;
  background-color: #eb5b00;
}
.form__option-group:hover label {
  color: white;
  background-color: #eb5b00;
}

.form__error {
  /* opacity: ; */
  background-color: #eb5b00;
  position: absolute;
  bottom: -200px;
  left: 0;
  width: 100%;
  text-align: center;
  color: white;
  padding: 10px;
  font-size: 16px;
  transition: all 0.2s;
}
.error-active {
  bottom: 0;
}

.loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  border: 3px solid;
  border-color: #fff #fff transparent transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
.loader::after,
.loader::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 3px solid;
  border-color: transparent transparent #eb5b00 #ff3d00;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-sizing: border-box;
  animation: rotationBack 0.5s linear infinite;
  transform-origin: center center;
}
.loader::before {
  width: 32px;
  height: 32px;
  border-color: #fff #fff transparent transparent;
  animation: rotation 1.5s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotationBack {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
