* {
    font-family: "Inter Tight", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}
form input{
    border: 0px;
    border-bottom: 1px solid #dfdfdf;
}
.throw_error{
    display: none;
    color: #ffffff;
    background: #f44336ab;
    padding: 5px;
}
html,body{
    overflow: hidden;
    /* overflow-y: scroll; */
}
.main-container{
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-align-items: center;
}
.center-form{
    max-width: 20rem;
    width: 80vw;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 0px 3px 1px #e1e1e1;

}
.center-form input{
    height: 2rem;
    width: 100%;
    border-radius: 7px;
    background: transparent;
    color:#000;

}
.center-form  .button{
    width: 100%;
    border-radius: 7px;
    height: 2rem;
    margin: 5px 0;
    color: #f9f9f9;
    background: #0d4d2a;
    box-shadow: 1px 1px 11px 4px #a9a9a9;

}

/**loader start*/

.lds-ripple {
    display: none;
    position: relative;
    width: 80px;
    height: 80px;
    left: 23vw;
  }
  .lds-ripple div {
    position: absolute;
    border: 4px solid #3F51B5;
    opacity: 1;
    border-radius: 50%;
    animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    z-index: 999;
  }
  .lds-ripple div:nth-child(2) {
    animation-delay: -0.5s;
  }
  @keyframes lds-ripple {
    0% {
      top: 36px;
      left: 36px;
      width: 0;
      height: 0;
      opacity: 0;
    }
    4.9% {
      top: 36px;
      left: 36px;
      width: 0;
      height: 0;
      opacity: 0;
    }
    5% {
      top: 36px;
      left: 36px;
      width: 0;
      height: 0;
      opacity: 1;
    }
    100% {
      top: 0px;
      left: 0px;
      width: 72px;
      height: 72px;
      opacity: 0;
    }
  }

/*loader end */