*{
  margin: 0;
  padding: 0;
}
.wrapper {
  max-width: 430px;
  margin: 0 auto;
  background: url(../images/bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 100vh;
  box-sizing: border-box;
}
.main-form.questions {
  align-items: start;
  justify-content: start;
  min-height: 80vh;
  margin-top: 100px;
}
.main-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
.hero-title {
  color: #000;
  text-align: center;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 10px 0 6px;
}
.logo {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
}
.logo img {
  width: 100%;
}
/* .main-form label {
  color: #B3CF54; 
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
} */
.main-form p span {
  font-size: 17px;
  font-weight: 600;
  display: block;
  text-align: center;
  margin: 15px 15px;
}
.main-form label span {
  color: red;
}
 
.form-check label {
  color: #fff;
  font-size: 11px;
}
.btn-secondary { 
  text-transform: uppercase;
  font-weight: 700;
  background: #000;
  border: 0px solid;
  width: 90%;
  color: #fff;
  padding: 20px 10px;
  border-radius: 8px;
  margin-bottom: 30px;
}
.bottom-image {
  position: absolute;
  bottom: 0;
  right: 10px;
}

.thankyou-wrapper {
  /* background: url(../images/bg-thank.png);
  background-size: cover;
  background-repeat: no-repeat; */
  padding: 200px 0px 310px;
}
.statue-left {
  position: absolute;
  top: -57%;
  left: -45px;
}
.statue-right {
  position: absolute;
  right: -46px;
  top: -40%;
}
.tank-you {
  text-align: center;
  padding: 15% 15%;
}
.tank-you h3 {
  color: #EEA847;
  text-align: center;
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 42px;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.tank-you p {
  color: #FFF;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.bottom-left {
  position: absolute;
  bottom: -45px;
  left: -15px;
}
.bottom-tree {
  position: absolute;
  bottom: 0;
  left: 0;
}
.bottom-city {
  position: absolute;
  bottom: 0;
  right: 0;
}

/* Question  */
.question-label span {
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}
.question-title {
  letter-spacing: 0.5px;
  font-size: 36px;
  font-weight: 900;
  max-width: 330px;
  margin: 20px 0 30px;
}
.skin-quiz-part {
  /* background: red; */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  bottom: 20px;
  padding: 0 20px;
}
.skin-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.skin-text span {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 900;
}
.bar {
  width: 50px;
  height: 5px;
  background: #fff;
  cursor: pointer;
}
.skin-bar .bar.active {
  background: #000;  
}
/* new input field radio  */
.form-field [type="radio"]:checked,
.form-field [type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.form-field [type="radio"]:checked + label,
.form-field [type="radio"]:not(:checked) + label{
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-size: 17px;
  line-height: 24px;
  display: inline-block;
  font-weight: 600;
}
.form-field [type="radio"]:checked + label:before,
.form-field [type="radio"]:not(:checked) + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 25px;
  height: 25px;
  border: 1px solid #383838;
  border-radius: 100%;
  background: transparent;
}
.form-field [type="radio"]:checked + label:after,
.form-field [type="radio"]:not(:checked) + label:after {
  content: '';
  width: 17px;
  height: 17px;
  background: #000;
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.form-field [type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.form-field [type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}


/* form 
 */
.form-group {
  width: 90%;
}
.main-form .form-control {
  border-radius: 5px;
  border: 1px solid #fff;
  text-align: center;
  color: #000;
  padding: 15px 10px;
  width: 100%;
  font-size: 16px;
  font-weight: 700;
}
.form-field.w-90 {
  width: 88%;
}
.form-subtitle {
  font-size: 16px;
  line-height: 24px;
  display: block;
  font-weight: 600;
  text-align: center;
  padding: 0 18px;
}
.form-field.w-90 [type="radio"]:checked + label:before, 
.form-field.w-90 [type="radio"]:not(:checked) + label:before {
  top: 10px;
}
.form-field.w-90 [type="radio"]:checked + label:after, 
.form-field.w-90 [type="radio"]:not(:checked) + label:after {
  top: 14px;
}

input::-webkit-input-placeholder { 
  color: #000; 
  font-weight: 700; 
  font-size: 14px;
}
input:-moz-placeholder { 
  color: #000; 
  font-weight: 700; 
  font-size: 14px;
}
input::-moz-placeholder { 
  color: #000; 
  font-weight: 700; 
  font-size: 14px;
}
input:-ms-input-placeholder { 
  color: #000; 
  font-weight: 700; 
  font-size: 14px;
}

/* 1) Make the checkbox look like a radio */
input[type="checkbox"].custom-radio{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #000;
  border-radius: 50%;
  position: relative;
  cursor: pointer;

  /* Prevent breaking to a new line */
  display: inline-block;     /* override any global input { display:block } */
  vertical-align: top;
  margin: 2px 0 0 0;         /* slight top alignment tweak */
}

input[type="checkbox"].custom-radio:checked::before{
  content: "";
  position: absolute;
  inset: 3px;               /* inner dot size for 20px circle */
  background: #000;
  border-radius: 50%;
}

/* 2) Keep the label on the same line */
.custom-radio + label,
label.consent-label{
  display: inline-block;     /* override label { display:block } */
  vertical-align: middle;
  margin-left: 8px;
  cursor: pointer;
  width: 80%;
  font-weight: 600;
}

/* Consent (Terms & marketing) styling */
#opt_in + label {
  color: #000;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
}
#opt_in + label a {
  color: #2b6cb0;            /* accessible blue */
  text-decoration: underline;
  font-weight: 700;
}
#opt_in + label a:hover,
#opt_in + label a:focus {
  color: #1a4f95;
}
.form-field.w-90 p { margin: 0; }
.form-field.w-90 { margin-top: 8px; }
