

/* app logo change */
.app-logo {
  height: 50px;
  width: 216px;
  background: url("/static/images/logo-loyabuzz-svg.svg");
  background-size: cover;
  margin: 0 auto;
  }
.login-poster{
  opacity: 90% !important;
  background-position: center center !important;
  background-repeat: no-repeat !important; 
}
.slider-content{
  top: -15%;
  color:black !important;
  opacity: 100%;
}


/* log in text with yellow circle style */
.login-text {
    position: relative;
    font-size: 2.2rem;
    padding: 0 1rem;
    margin: 0 auto;
    text-align: center;
}
.yellow-circle {
    position: absolute;
    width: 0.8em;
    height: 0.8em;
    background-color: #ffaf2e;
    border-radius: 50%;
    top: 12px;
    left: -2px;
    z-index: -1;
    opacity: 80%;
}
.login-text::first-letter {
    position: relative;
    z-index: 1; 
}



.login-background{
    position: relative;
    overflow: hidden; 
}
.login-background-image{
    opacity:20%;
    position: absolute; 
    top: 50%; 
    left: 50%; 
    width: 100%;
    height: 100%; 
    object-fit: cover; 
    transform: translate(-50%, -50%); 
}
.mobile-background-image{
    display: none;
}

/* forgot form styles */
.forgot-form-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
    position: relative;  
    background: rgba(255, 255, 255, 0.2); 
    backdrop-filter: blur(2px); 
    border-radius: 15px; 
    width: 62%;
    height: 67%; 
    padding: 2em;
    margin: auto; 
    border: 1px solid rgba(255, 255, 255, 0.5); 
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); 
}
.forgot-form label{
    color: black;
}
.text-sub{
    color:gray;
    margin: 0 auto;
}

/* login button */
.login-button-container{
    width: 60%;
    margin:15px auto;
  }
  .login-button {
    transition: all .3s;
    z-index: 1;
    border: none;
    box-shadow: 0 0 20px #b3aeae;
    color: black;
    width: 70%;
  }
  .login-button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffaf2e;
    border-radius: 15px;
    z-index: -2;
    }
  .login-button::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #067196;
    transition: all .3s;
    border-radius: 15px;
    z-index: -1;
    box-shadow: 0 0 20px #b3aeae;
  }
  .login-button:hover {
    box-shadow: 0 0 20px #b3aeae;
  }
  .login-button:hover::before {
    width: 100%;
  }
  .login-form input{
    background-color: rgba(255, 255, 255, 0.8) !important;
  }
  .login-form input:focus{
    border-color: #067196;
    box-shadow: 0 0 0 0.25rem rgba(6, 113, 150, 0.25);
  }




@media (max-width: 768px){
    .forgot-form-container{
      width: 80%;
      height: 60vh;
    }
    .mobile-background-image{
      display: block;
      position: absolute; 
      top: 0%; 
      left: 50%; 
      width: 150vw;
      max-width: 150vw;
      height: auto; 
      object-fit: cover; 
      transform: translate(-50%, -50%); 
      opacity: 50%;
    }
}

@media (max-width: 580px) {
    .forgot-form-container{
      width: 90%;
    }
    .mobile-background-image{
    display: block;
    position: absolute; 
    top: 0%; 
    left: 50%; 
    width: 150vw;
    max-width: 150vw;
    height: auto; 
    object-fit: cover; 
    transform: translate(-50%, -50%); 
    opacity: 50%;
    }
    .login-button-container{
      width: 100%;
    }
    .login-button{
      border-radius: 5px;
    }
}
@media (max-width: 480px){
    .login-text {
        font-size: 1.4rem;
    }
    .yellow-circle {
        top: 8px;
        left: 4px;
    }
    .login-button-container{
        width: 100%;
    }
    .login-button{
        font-size: 0.8rem !important;
        font-weight: 500;
        border-radius: 5px;
    }
}