

*
{
  margin:0;
  padding:0;
  box-sizing: border-box;
}
.container
{
  width: 100%;
  /* height: 100vh; */
  /* display: flex;
  align-items: center;
  justify-content: center; */
}

#the-count {
  float: right;
  padding: 0.1rem 0 0 0;
  font-size: 0.875rem;
}
#the-count1 {
  float: right;
  padding: 0.1rem 0 0 0;
  font-size: 0.875rem;
}

.form-bg:before{
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}
form{
    width: 100%;
    margin: 3% 0;
    margin-left: 100px;
   
}
form .heading{
    font-size: 35px;
    font-weight: bold;   
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;  
    color:#223486;
    
}
form .form-group{
    padding: 20px;
    border-radius: 10px;
    background:rgb(245, 245, 245);   
    box-shadow: 0 0 5px #bcb4b4;
    position: relative;
}
form .form-check-label{
    font-size: 16px;  
    letter-spacing: 1px;
    
}
.input-box
{
  width: 80%;
  padding: 8px;
  margin: 3px;
  border-radius: 5px;
}

form .form-control{
    height: 70px;
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 30px;
    border-bottom: 2px solid #8f8597;
    border-radius: 2px;
    opacity: 0.8;
    background-color: #fff;
}

.question
{
  color:#223486;
  font-weight: 600;
}
form .btn{
    font-size: 17px;
    font-weight: bold;
    color: #fff;
    background: #00d3bf;
    text-transform: uppercase;
    box-shadow: 0 0 8px 0 #a2a2a2;
    border: none;
    border-radius: 50px;
    padding: 12px 60px 12px 15px;
    position: absolute;
    bottom: 2%;
    right: 40%;
    transition: all 0.2s ease 0s;
}
form .btn:hover{
    background: #fff;
    color: #00d3bf;
}
form .btn .fa{
    font-size: 38px;
    position: absolute;
    top: 5px;
    right: 7px;
}

@media screen and (max-width: 990px){
    form{ margin-left: 0; }
    form .btn{ right: -10px; }
    form .btn .fa{
        top: 7px;
        font-size: 35px;
    }

}
@media screen and (max-width: 480px){
  form{ margin-left: 0px; }
    form .heading{
        font-size: 22px;
    }
    form .btn{
      position: absolute;
     
      right: 150px;
      padding: 7px 37px 6px 15px; 
    }
    form .btn .fa{ font-size: 24px; }
}
/* star ratings with javascript */
  .card
  {
  min-height: 2vh;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  background: #A9927D;
  font-family: "Poppins", sans-serif;
  padding:3px;
  }
  .card-text
  {
    color:#223486;
    font-size: 17px;
    font-weight: 600;
  }
  .star {
    font-size: 10vh;
    cursor: pointer;
  }
   
  .one {
    color: rgb(255, 0, 0);
  }
   
  .two {
    color: rgb(255, 106, 0);
  }
   
  .three {
    color: rgb(251, 255, 120);
  }
   
  .four {
    color: rgb(255, 255, 0);
  }
   
  .five {
    color: rgb(24, 159, 14);
  }



.success_text {
  text-align: center;
  font-weight: bold;
}

.required:after 
{
   content:"*";
   color: red;
  }
  