
.form_container {
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin:auto;
    margin-top: 30px;;
    padding: 50px 40px 20px 40px;
    background-color:#f0fcf2;
    box-shadow: 0px 106px 42px rgba(0, 0, 0, 0.01),
      0px 59px 36px rgba(0, 0, 0, 0.05), 0px 26px 26px rgba(0, 0, 0, 0.09),
      0px 7px 15px rgba(0, 0, 0, 0.1), 0px 0px 0px rgba(0, 0, 0, 0.1);
    border-radius: 11px;
    font-family: "Inter", sans-serif;
  }
  *{
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
   }
   .btn-primary, .btn-primary:hover, .btn-primary:active, .btn-primary:visited {
    background-color: #006400 !important;
    border-color: #006400 !important;
}

  
  .logo_container {
    box-sizing: border-box;
    width: 80px;
    height: 80px;
    background: linear-gradient(180deg, rgba(248, 248, 248, 0) 50%, #F8F8F888 100%);
    border: 1px solid #F7F7F8;
    filter: drop-shadow(0px 0.5px 0.5px #EFEFEF) drop-shadow(0px 1px 0.5px rgba(239, 239, 239, 0.5));
    border-radius: 11px;
  }
  
  .title_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  
  .title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #212121;
  }
  
  .subtitle {
    font-size: 0.725rem;
    max-width: 80%;
    text-align: center;
    line-height: 1.1rem;
    color: #8B8E98
  }
  
  .input_container {
    width: 100%;
    height: fit-content;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  
  .icon {
    width: 20px;
    position: absolute;
    z-index: 99;
    left: 12px;
    bottom: 9px;
  }
  
  .input_label {
    font-size: 0.75rem;
    color: #8B8E98;
    font-weight: 600;
  }
  
  .input_field {
    width: auto;
    height: 40px;
    padding: 0 0 0 40px;
    border-radius: 7px;
    outline: none;
    border: 1px solid #e5e5e5;
    filter: drop-shadow(0px 1px 0px #efefef)
      drop-shadow(0px 1px 0.5px rgba(239, 239, 239, 0.5));
    transition: all 0.3s cubic-bezier(0.15, 0.83, 0.66, 1);
  }
  
  .input_field:focus {
    border: 1px solid transparent;
    box-shadow: 0px 0px 0px 2px #242424;
    background-color: transparent;
  }
  
  .sign-in_btn {
    width: 100%;
    height: 40px;
    border: 0;
    background: #006400;
    border-radius: 7px;
    outline: none;
    color: #ffffff;
    cursor: pointer;
  }
  
  .sign-in_ggl {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ffffff;
    border-radius: 7px;
    outline: none;
    color: #242424;
    border: 1px solid #e5e5e5;
    filter: drop-shadow(0px 1px 0px #efefef)
      drop-shadow(0px 1px 0.5px rgba(239, 239, 239, 0.5));
    cursor: pointer;
  }
  
  .sign-in_fb {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ffffff;
    border-radius: 7px;
    outline: none;
    color: #242424;
    border: 1px solid #e5e5e5;
    filter: drop-shadow(0px 1px 0px #efefef)
      drop-shadow(0px 1px 0.5px rgba(239, 239, 239, 0.5));
    cursor: pointer;
  }
  
  .separator {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    color: #8B8E98;
  }
  
  .separator .line {
    display: block;
    width: 100%;
    height: 1px;
    border: 0;
    background-color: #e8e8e8;
  }
  
  .note {
    font-size: 0.75rem;
    color: #8B8E98;
    text-decoration: underline;
  }
  .ggl_img {
    padding-right: 0.1em;
    height: 17px;
    width: 25px;
    margin:auto;
    
  }
  .ggl_txt{
    margin-bottom: 0.5px;
    padding-right:3px ;
  }
a{
  text-decoration: none;
  color: #006400;
}
.container-fluid{
  margin: 0%;
  padding: 0%;
}
 



.spinnerContainer {  display: flex;
  flex-direction: column;  align-items: center;
}
.spinner {  width: 56px;
  height: 56px;  display: grid;
  border: 4px solid #0000;  border-radius: 50%;
  border-right-color: #299fff;  animation: tri-spinner 1s infinite linear;
}
.spinner::before,.spinner::after {
  content: "";  grid-area: 1/1;
  margin: 2px;  border: inherit;
  border-radius: 50%;  animation: tri-spinner 2s infinite;
}
.spinner::after {  margin: 8px;
  animation-duration: 3s;}
@keyframes tri-spinner {
  100% {    transform: rotate(1turn);
  }}
.loader {
  color: #4a4a4a;  font-family: "Poppins",sans-serif;
  font-weight: 500;  font-size: 25px;
  -webkit-box-sizing: content-box;  box-sizing: content-box;
  height: 40px;  padding: 10px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;  border-radius: 8px;
}
.words {  overflow: hidden;
}
.word {  display: block;
  height: 100%;  padding-left: 6px;
  color: #299fff;  animation: cycle-words 5s infinite;
}
@keyframes cycle-words {  10% {
    -webkit-transform: translateY(-105%);    transform: translateY(-105%);
  }
  25% {    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);  }
  35% {
    -webkit-transform: translateY(-205%);    transform: translateY(-205%);
  }
  50% {    -webkit-transform: translateY(-200%);
    transform: translateY(-200%);  }
  60% {
    -webkit-transform: translateY(-305%);    transform: translateY(-305%);
  }
  75% {    -webkit-transform: translateY(-300%);
    transform: translateY(-300%);  }
  85% {
    -webkit-transform: translateY(-405%);    transform: translateY(-405%);
  }
  100% {    -webkit-transform: translateY(-400%);
    transform: translateY(-400%);  }
}.spinnerContainer{
  height: 100vh;  display: flex;
  justify-content: center;  align-items: center;
}