.success_popup_wrapper.showed {
    position: fixed;
    top: 25vh;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.75s;
  }
  .success_popup_wrapper {
    
    display: none;
    
  }
  .success_popup {
    justify-content: center;
    background-color: white;
    padding: 2rem;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(128, 128, 128, 0.4);
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }

  .button{
    font-size: 14px;
    color: #fff;
    background-color: #ff511a;
    padding: 12px 30px;
    display: inline-block;
    border-radius: 5px;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    border: none;
    transition: all .3s;
       
   }
   .button:hover{
    background-color: #43ba7f;
   }

   .container-login {
    font-family: 'Poppins', sans-serif;
    border:1px solid gray;
  border-radius: var(--card-border-radius);
    max-width: 700px;
    
    border-radius: var(--card-border-radius);
    
    display: flex;
    justify-content: center;
    margin: 30px auto;
    box-shadow: var(--box-shadow);
    background-color: white;
    flex-direction: column;
    align-items: center;
    
    
}

.loader_wrapper.hidden {
  display: none;
}
.loader_wrapper.showed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #ffffff79;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.75s;
}
.loader_inner_wrapper {
  justify-content: center;
  background-color: white;
  padding: 4rem;
  box-shadow: var(--box-shadow);
  border-radius: 1.5rem;
}

.g-recaptcha div{
margin: 0 auto;
}


dialog {
  border:1px solid #e9ecef;
  border-radius: 0.3rem;
}

.login-container{
  margin-top:150px;
}

@media (max-width: 767px){
  .login-container{
    margin-top:0px;
  }
}