/* GulfTech ERP - Auth Pages (auth-login-2 / auth-fluid theme) */
:root {
  --auth-primary: #5b73e8;
  --auth-card-bg: #fff;
  --auth-black: #000;
  --auth-white: #fff;
}

body.authentication-bg {
  min-height: 100vh;
  overflow-x: hidden;
}

.auth-fluid {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 100vh;
  flex-direction: row;
  background: url("../images/template/bg-auth.jpg") center;
  background-size: cover;
}

.auth-fluid-form-box {
  max-width: 480px;
  border-radius: 0;
  z-index: 2;
  padding: 3rem;
  background-color: var(--auth-card-bg);
  position: relative;
  width: 100%;
  border-top: 4px double var(--auth-primary);
  margin-left: auto;
}

.auth-fluid-right {
  padding: 6rem 3rem;
  flex: 1;
  position: relative;
  color: var(--auth-white);
  background-color: rgba(0, 0, 0, 0.3);
}

.auth-user-testimonial {
  position: absolute;
  margin: 0 auto;
  padding: 0 1.75rem;
  bottom: 3rem;
  left: 0;
  right: 0;
  text-align: center;
}

.auth-user-testimonial p.lead {
  font-size: 1.125rem;
  margin: 0 auto 20px auto;
  max-width: 700px;
}

.auth-brand {
  margin-bottom: 2rem;
}

.auth-brand .logo-dark { display: block; }
.auth-brand .logo-light { display: none; }

html[data-bs-theme="dark"] .auth-brand .logo-dark { display: none; }
html[data-bs-theme="dark"] .auth-brand .logo-light { display: block; }

.footer-alt {
  padding: 0;
  margin: 0;
  border: none;
  background: none;
}

.social-list-item {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid;
}

/* reCAPTCHA responsive */
@media screen and (max-width: 575px) {
  #rc-imageselect, .g-recaptcha {
    transform: scale(0.77);
    transform-origin: 0 0;
  }
}

@media (max-width: 991.98px) {
  .auth-fluid {
    display: block;
  }

  .auth-fluid-form-box {
    max-width: 100%;
    min-height: 100vh;
  }

  .auth-fluid-right {
    display: none;
  }
}
