
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Lato", sans-serif;
}




:root  {
    --brand-color: #95BF1D;
    --text-main: #1A1A1A;
}


html {
  scroll-behavior: smooth;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2em;
}

a, ul, li {
    text-decoration: none;
    list-style: none;
}

.form-box {
    display: flex;
    flex-direction: column;
    margin-top: 5em;
    border: 5px solid var(--brand-color);
    border-radius: 12px;
}

/* Progress */
.form-box .progress {
    position: relative;
    padding: 1em;
    background-color:  #dff1a6;
    
}

.selected-plan {
  border: 2px solid var(--brand-color);
  /* Adjust border color as needed */
}


.logo {
    width: 80px;
   
   
  }
  
  .logo img {
    width: 100%;
    height: 100%;
   margin: 10px;
    
  }

  

  /* Progress steps */

  .progress ul.progress-steps {
 
    display: flex;
    flex-direction: row;
    gap: 5em;
    justify-content: center;
    align-items: center;
    
  }

  .progress ul.progress-steps li {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 2em;
    margin-top: 3em;

  }

  .progress ul.progress-steps li > span {
    position: relative;
    width: 40px;
    height: 40px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: #fff;
    background-color: rgb(209, 197, 197);
    border-radius: 50%;
    z-index: 1;
  }

  .progress ul.progress-steps li.active > span {
    color: #fff;
    background-color: var(--brand-color);
    border: 2px solid  #e3faa5;
    z-index: 1;
  }

  .form-one {
    margin-top: 40px;
  }


  .step-text {
    font-size: 12px;
    font-weight: 600;
  }
  
  .fitness-plan-container {
    margin-top: 20px;
    
  }

  .plan-container {
    text-align: center;
    padding: 20px;
    margin-bottom: 20px;

    /* margin-top: 70px; */
}

.plan-title {
  font-size: 1.5em;
  margin-bottom: 40px;
}


.plans {
  display: flex;
  flex-wrap: wrap;
  /* justify-content: center; */
  gap: 20px;
}

.plan {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-width: 270px;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
  transition: transform 0.4s;
  cursor: pointer;
}

.plan:hover {
  transform: scale(0.9); 
}
.plan h2 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 13px;
}

.price {
  font-size: 1.2em;
  margin: 5px 0;
  color: var(--brand-color);
}

.price img {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 5px;
}

.features {
  margin: 20px 0;
}

.features p i{
  margin-right: 6px;
}

.features p {
  margin: 5px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.plan-btn {
  background-color: var(--brand-color);
  color: #fff;
  border: none;
  padding: 10px 10px;
  border-radius: 5px;
  cursor: pointer;
  width: 120px;
  text-transform: uppercase;
  transition: transform 0.4s;
}

.plan-btn:hover {
  transform: scale(1.1); 
}



.question-container {
    background-color: #fff;
    padding: 10px;
    border-radius: 8px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
}

.question {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.option-container {
    display: flex;
}

.option {
    display: inline-block;
    width: 40px;
    padding: 10px;
    margin: 5px;
    text-align: center;
    background-color: white;
    color: black;
    border: 2px solid #ddd;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s;
    font-size: 10px;
}

.option.selected {
    background-color: #95BF1D;
    color: white;
}




.form-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1 1 45%;
    min-width: 200px;
}

label {
    margin-bottom: 5px;
    font-weight: 600;
}

input, select {
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
}


.measurement-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.measurement-container h1 {
    text-align: center;
    margin-bottom: 20px;
}

.measurement {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.measurement-item {
    flex: 1 1 calc(33.333% - 40px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}

.measurement-item p {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.control .fas {
    cursor: pointer;
    font-size: 1.5em;
}

.value {
    font-size: 1.5em;
}

.custom-social-text {
   
    font-size: 12px;
    text-align: center;
    font-weight: 500;
  
}

.custom-container {
    /* background-color: #fff; */
    padding: 20px;
    border-radius: 8px;
    /* box-shadow: 0 0 10px rgba(0,0,0,0.1); */
    width: 400px;
    text-align: center;
}
.custom-container h2 {
    margin-bottom: 20px;
}
.custom-form-group {
    margin-bottom: 15px;
    position: relative;
}
.custom-form-group input {
    width: 100%;
    padding: 10px;
    padding-right: 40px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
} 
  .custom-form-group .fa-eye, .custom-form-group .fa-eye-slash {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
.custom-btn {
    background-color: var(--brand-color);
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    /* margin-right: 120px; */
}
.custom-or-container {
    display: flex;
    align-items: center;
  margin-left: 25px;
    margin: 20px 0;
}
.custom-or-container .custom-line {
    flex-grow: 1;
    height: 1px;
    background-color: #ccc;
}
.custom-or-container .custom-or {
    padding: 0 10px;
    color: #999;
}

.custom-social-login {
    display: flex;
    background-color: #ebe8e8;
    width: 300px;
    border-radius: 8px;
    gap: 5px;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
}
.custom-social-login a {
    margin: 0 5px;
    color: #fff;
    display: inline-block;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.custom-social-login a svg {
    width: 20px;
    height: 20px;
}

.form-box form {
    width: 100%;
    padding: 2em;
    border-radius: 8px;
}


form > div {
    max-width: 400px;
    /* margin: 0 auto; */
}

form > div .desc {
   
    margin: 7px 0;
    color: #999;
}

.fitness-talk {
width: 100%;
font-size: 10.5px;
}

/* .form-two, .form-three, .form-four {
    display: none;
} */

form > div:not(.btn-group) {
    display: none;
    -webkit-animation: fadeIn 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) both;
    animation: fadeIn 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        -webkit-transform: translateY(10%);
        transform: translateY(10%)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

form > div.active {
    display: block;
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    justify-content: space-between;
}

.btn-group .btn-submit,
.form-four.active ~ .btn-group .btn-next {
    display: none;
}

.form-four.active ~ .btn-group .btn-submit {
    display: block;
}

.form-four.active ~ .btn-group {
    justify-content: space-between;
}

.btn-group [class*="btn-"] {
    background-color: var(--brand-color);
    color: white;
    padding: 1em 2.5em;
    border: none;
    border-radius: 4px;
    transition: transform 0.4s;
    cursor: pointer;
}

.btn-group [class*="btn-"]:disabled {
    background-color: #b1a8a8;
    border: 4px solid  #d3f17f;
    cursor: text;
}

.btn-group [class*="btn-"]:hover:not(:disabled) {
  transform: scale(1.1);
}


.progress ul li p {
    position: absolute;
    top: -2em;
    font-size: 10px;
    text-wrap: nowrap;
}


.sign-in-btn {
  margin-top: 10px;
  background-color: transparent;
}

.sign-in-a {
  color: #000000;
  font-weight: 600;
}

.sign-in-span {
  color: var(--brand-color);
  margin-left: 4px;
  transition: 0.4s;
}

.sign-in-span:hover {
  text-decoration: underline;
}

@media (min-width: 860px) {

    .form-box {
        flex-direction: row;
    }
    .form-box .progress {
        flex: 1 0 30%;
        min-width: 100px;
        padding: 3em;
    }

    .progress ul.progress-steps {
        flex-direction: column;
        margin: 8px;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 2em;
        
      }


      .progress ul.progress-steps li:not(:last-child)::before {
        content: "";
        position: absolute;
        top: 30px;
        left: 20px;
        height: 60px;
        width: 2px;
        background-color: #ccc;
        
      }

      .progress ul.progress-steps li > span {
        font-size: 10.5px;
        font-weight: 600;
      }

      .logo {
        margin-bottom: 40px;
      }


      .progress ul li p {
        position: relative;
        top: 1.5em;
        font-size: 10px;
        
    }


    .step-text {
       display: block;
      text-align: center;
      }
      
      .fitness-plan-container  {
        display: flex;
      }
}




@media (max-width: 768px) {
    .measurement-item {
        flex: 1 1 calc(50% - 40px);
    }
}


@media (max-width: 600px) {
    .form-group {
        flex: 1 1 100%;
    }

    
  .progress ul.progress-steps {
 
    display: flex;
    flex-direction: row;
    gap: 6em;
   
    
  }

  .progress ul.progress-steps li {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 2em;
    margin-top: 3em;

  }

  .progress ul.progress-steps li > span {
    position: relative;
    width: 30px;
    height: 30px;
    font-size: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: #fff;
    background-color: rgb(209, 197, 197);
    border-radius: 50%;
    z-index: 1;
  }

  .step-text-2 {
    text-align: center;
  }
}


@media (max-width: 480px) {
    .measurement-item {
        flex: 1 1 100%;
    }


    .step-text  {
        display: none;
    }

    .progress ul.progress-steps li > span {
        position: relative;
        width: 50px;
        height: 50px;
        font-size: 12px;
        font-weight: 600;
       
      }


      .custom-btn {
 
        margin-right: 120px;
    }

      .progress ul.progress-steps {
 
        display: flex;
        flex-direction: row;
        gap: 2em;
       
        
      }


      .custom-form-group input {
        width: 300px;
      
    }

    .custom-form-group {
        width: 300px;
    }

    /* .custom-or-container {
        display: flex;
        align-items: center;
        margin: 20px 0;
    } */
    .custom-or-container .custom-line {
        flex-grow: 0;
        width: 30%;
     
    }
    /* .custom-or-container .custom-or {
        padding: 0 10px;
        color: #999;
    } */
} 

@media (max-width: 420px) {
    .custom-form-group input {
        width: 270px;
        margin-left: 0;
      
    }

    .custom-form-group {
        width: 270px;
        margin-left: 0;
    }

    .custom-social-login {
   
        width: 270px;
        margin-left: 0;
       
       
    }
}
@media (max-width: 380px) {
 

    .progress ul.progress-steps li > span {
        position: relative;
        width: 40px;
        height: 40px;
        font-size: 12px;
        font-weight: 600;
       
      }

      .custom-form-group input {
        width: 240px;
        margin-left: 0;
      
    }

    


    .custom-form-group {
        width: 240px;
        margin-left: 0;
    }

    .custom-social-login {
   
        width: 240px;
        margin-left: 0;
       
       
    }

    .custom-or-container .custom-line {
        flex-grow: 0;
        width: 20%;
     
    }


} 

@media (max-width: 345px) {
 

    .progress ul.progress-steps li > span {
        position: relative;
        width: 35px;
        height: 35px;
        font-size: 12px;
        font-weight: 600;
       
      }

      .plan {
      
        padding: 10px;
        max-width: 240px !important;
       
      }

      .custom-form-group input {
        width: 210px;
        margin-left: 0;
      
    }

    .custom-form-group {
        width: 210px;
        margin-left: 0;
    }

    .custom-social-login {
   
        width: 210px;
        margin-left: 0;
       
       
    }


} 