/*
  Authentication : style sheets
*/

.auth-brand {
  margin-bottom: 2rem;
}

.auth-brand .auth-logo img {
  width: 100%;
}

.auth-brand .logo-dark {
  display: none;
}

.auth-brand .logo-light {
  display: none;
}

html[data-bs-theme=dark] .auth-brand .auth-logo.logo-dark {
  display: block;
}

html[data-bs-theme=light] .auth-brand .auth-logo.logo-light {
  display: block;
}

.authentication-bg {
  width: 100dvw;
}
.authentication-bg .account-pages {
  align-items: center;
  display: flex;
  min-height: 100vh;
}

.authentication-bg.enlarged,
.auth-fluid-pages.enlarged,
.auth-fluid-pages[data-sidenav-size=condensed] {
  min-height: 100px;
}

.logout-icon {
  width: 140px;
}

.auth-fluid {
  position: relative;
  display: flex;
  min-height: 100vh;
  flex-direction: row;
  align-items: stretch;
}

.auth-fluid .auth-fluid-form-box {
  max-width: 480px;
  border-radius: 0;
  z-index: 2;
  padding: 3rem;
  background-color: var(--bs-secondary-bg);
  position: relative;
  width: 100%;
}

.auth-fluid .auth-form {
  padding: 6rem 3rem;
  flex: 1;
  position: relative;
}

.auth-fluid .auth-billboard {
  padding: 6rem 3rem;
  flex: 1;
  position: relative;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.3);
  background-size: 150%;
  background-position-x: 85%;
  background-position-y: 60%;
}


.auth-user-testimonial {
  position: absolute;
  margin: 0 auto;
  padding: 0 1.75rem;
  bottom: 3rem;
  left: 0;
  right: 0;
}
.auth-user-testimonial p.lead {
  font-size: 1.125rem;
  margin: 0 auto 20px auto;
  max-width: 700px;
}

@media (max-width: 991.98px) {
  .auth-fluid {
    display: block;
  }
  .auth-fluid .auth-fluid-form-box {
    max-width: 100%;
    min-height: 100vh;
  }
  .auth-fluid .auth-billboard {
    display: none;
  }
}
