#forget:hover {
  text-decoration: underline !important;
}
#forget{
  font-size: 14px;
}
/* app logo change */
.app-logo {
  height: 50px;
  width: 216px;
  background: url("/static/images/logo-loyabuzz-svg.svg");
  background-size: cover;
  overflow: hidden;
}
.login-poster{
  opacity: 100% !important;
  background-position: center center !important;
  background-repeat: no-repeat !important; 
}
.slider-content-text{
  top: -15%;
  opacity: 100% !important;
  color:black !important;
}
.slider-content-text p{
  opacity: 100% !important;
}

/* login form background */
.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%); 
}
/* log in text with yellow circle style */
.login-text {
  position: relative;
  font-size: 2.6rem;
  padding: 0 1rem;
}
.yellow-circle {
  position: absolute;
  width: 0.8em;
  height: 0.8em;
  background-color: #ffaf2e;
  border-radius: 50%;
  top: 12px;
  left: -5px;
  z-index: -1;
  opacity: 80%;
}
.login-text::first-letter {
  position: relative;
  z-index: 1; 
}
/* login form styles */
.login-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: 60%; 
  margin: auto; 
  border: 1px solid rgba(255, 255, 255, 0.5); 
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); 
}
.login-form label{
  color: black;
}
.forget-pw, .join-now{
  color: #067196 !important;
  font-size: 1em;
}
.forget-pw:hover, .join-now:hover{
  color:#3255ad !important;
}
/* 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);
}
.mobile-background-image{
  display: none;
}


@media (max-width: 768px){
  .login-form-container{
    width: 80%;
  }
  .mobile-background-image{
    display: block;
    position: absolute; 
    top: 0%; 
    left: 50%; 
    width: 150vw;
    height: auto; 
    object-fit: cover; 
    transform: translate(-50%, -50%); 
    opacity: 50%;
  }
}
@media (max-width: 580px) {
  .login-form-container{
    width: 90%;
  }
  .mobile-background-image{
  display: block;
  position: absolute; 
  top: 0%; 
  left: 50%; 
  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-form-container{
    height: 70vh;
  }
}
@media (max-width: 414) and (max-height: 740px){
  .login-form-container{
    height: 80vh;
  } 
} 
@media (max-width: 375px) and (max-height: 812px){
  .login-form-container{
    height: 80vh;
  }
  .login-button-container{
    width: 100%;
  }
  .login-button{
    border-radius: 5px;
  }
}
@media (max-width: 375px) and (max-height: 668px){
  .login-form-container{
    height: 90vh;
  }
}
