.main-cont {
    height: 100vh;
  }
  label{
      color: #A9A9A9;
      opacity: 87%;
      font-size: 12px;
  }
  .heading{
      font-size: 34px;
      text-align: center !important;
  }
  .form-container {
    background: #fff;
    padding: 31px 47px;
    border-radius: 16px;
    box-shadow: 0 10px 40px #00000033;
    width: 40%;
}
.wrapper {
    background-color:#47787B;
    opacity: 100%;
    height: 43vh;
}
.sub-heading {
    font-size: 16px;
    letter-spacing: 0.44px;
  }
  .form-group {
    width: 99%;
  }
  .form-group input {
    outline: none !important;
    border-right: none !important;
    border-top: none;
    border-left: none;
  }
  .form-group input::placeholder {
    color: #A9A9A9;
  }
  .forgot {
      font-size: 12px;
      color: #3a86ff;
    }
    .sub-btn {
      background: #50d3dc;
      color: #47787b;
      height: 48px;
      padding: 7px 27px;
      border-radius: 8px;
      width: 99%;
      border: none;
      font-weight: 500;
    }
   
    .sub-btn:hover,
    .sub-btn:checked {
      background: #63e2e2;
      color: #47787b;
    }
  
  .social-link {
    border: 1px solid #eceef0;
    border-radius: 4px;
    padding: 11px 35px;
    margin-right: 4px;
    color: #283646;
    opacity: 87%;
    font-weight: 500;
  }
  #loader {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    /* background: linear-gradient(#47787B,#6fced3); */
  }
  
  .circle {
    width: 150px;
    height: 150px;
    background-color: #50d3dc;
    border-radius: 50%;
    margin: 200px auto;
    animation: animate 2s ease infinite;
  }
  
  @keyframes animate {
    0% {
      transform: scale(0.5);
      opacity: 0.5;
    }
    50% {
      transform: scale(2);
      opacity: 1;
    }
    100% {
      transform: scale(0.5);
      opacity: 0.5;
    }
  }

  /*media queries */

/*1200px breakpoint*/
@media (max-width: 1200px) {
    .under-form p{
        margin-right: 0 !important;
    }
  }
  
  /*991px breakpoint*/
  @media (max-width: 991px) {
    .form-container {
        width: 70%;
    }
  }
   /*960px breakpoint*/
   @media (max-width: 960px) {
    .form-container {
        width: 70%;
    }
  }
  
  /*768px breakpoint*/
  @media (max-width: 767px) {
    .form-container {
        width: 90%;
    }
  }
  
  /*400px breakpoint*/
  @media (max-width: 400px) {
    .under-form p{
        font-size: 14px;
    }
    .form-group input::placeholder {
        font-size: 14px;
      }
  }