/* [project]/css/xoffi-auth.css [app-client] (css) */
.form {
  width: 100%;
}

.form-control {
  background-color: var(--bs-gray-100);
  box-shadow: none;
  border: none;
  border-radius: .475rem;
  padding: .75rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  transition: all .15s ease-in-out;
}

.form-control:focus {
  box-shadow: none;
  border: none;
  outline: 0;
}

.bg-active-secondary {
  background-color: var(--bs-gray-100) !important;
}

body.auth-bg-custom .form-control {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: none;
  border: none;
  border-radius: .475rem;
  padding: .75rem 1rem;
  background-color: rgba(255, 255, 255, .95) !important;
}

body.auth-bg-custom .form-control:focus {
  box-shadow: none;
  border: none;
  outline: none;
  background-color: #fff !important;
}

.dark body.auth-bg-custom .form-control {
  color: #000;
  box-shadow: none;
  border: none;
  background-color: rgba(255, 255, 255, .95) !important;
}

.dark body.auth-bg-custom .form-control:focus {
  box-shadow: none;
  border: none;
  background-color: #fff !important;
}

.text-dark {
  color: var(--bs-dark) !important;
}

.fw-bolder {
  font-weight: 700 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.text-gray-500 {
  color: #a1a5b7 !important;
}

.fs-6 {
  font-size: 1.075rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-8 {
  margin-bottom: 2rem !important;
}

.mb-10 {
  margin-bottom: 2.5rem !important;
}

.mb-11 {
  margin-bottom: 2.75rem !important;
}

.d-flex {
  display: flex !important;
}

.flex-stack {
  justify-content: space-between !important;
  align-items: center !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.gap-3 {
  gap: 1rem !important;
}

.fs-base {
  font-size: 1rem !important;
}

.d-grid {
  display: grid !important;
}

.btn {
  color: #212529;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: .475rem;
  padding: .75rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  display: inline-block;
}

.btn-primary {
  color: #fff;
  background-color: var(--bs-primary, #009ef7);
  border-color: var(--bs-primary, #009ef7);
}

.btn-primary:hover {
  color: #fff;
  background-color: #0056b3;
  border-color: #004085;
}

.btn-primary:focus {
  box-shadow: 0 0 0 .25rem rgba(var(--bs-primary-rgb), .5);
}

.btn-primary:disabled {
  opacity: .65;
  cursor: not-allowed;
}

.link-primary {
  text-decoration: none;
  color: var(--bs-primary, #009ef7) !important;
}

.link-primary:hover {
  text-decoration: underline;
  color: #0056b3 !important;
}

.text-center {
  text-align: center !important;
}

.login-title img {
  width: auto;
  max-height: 80px;
}

.auth-container {
  background-color: #f8f9fa;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  display: flex;
}

body.auth-bg-custom .auth-container {
  background-color: rgba(0, 0, 0, 0);
}

.auth-card {
  box-shadow: none;
  -webkit-backdrop-filter: none;
  background: none;
  border: none;
  border-radius: 1rem;
  width: 100%;
  max-width: 400px;
  padding: 3rem 2.5rem;
}

body.auth-bg-custom.bg-loaded .auth-card.auth-card-glass {
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, .65);
  border: 1px solid rgba(255, 255, 255, .25);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
}

.dark body.auth-bg-custom.bg-loaded .auth-card.auth-card-glass {
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  background: rgba(30, 30, 40, .65);
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .3);
}

.dark .auth-card {
  color: inherit;
  background: none;
  border: none;
}

.fv-row {
  margin-bottom: 1.5rem;
}

.fv-plugins-icon-container {
  position: relative;
}

.fv-plugins-bootstrap5-row-valid .form-control {
  border-color: var(--bs-success);
}

.invalid-feedback {
  width: 100%;
  color: var(--bs-danger);
  margin-top: .25rem;
  font-size: .875em;
}

.btn .spinner-border {
  width: 1rem;
  height: 1rem;
  margin-right: .5rem;
}

.domain-logo {
  max-height: 60px;
  margin-bottom: 1rem;
}

.domain-title {
  margin-bottom: .5rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.domain-description {
  color: #6c757d;
  margin-bottom: 2rem;
  font-size: .95rem;
}

@media (max-width: 768px) {
  .auth-card {
    margin: 1rem;
    padding: 2rem 1.5rem;
  }

  .login-title img {
    max-height: 60px;
  }
}

body.auth-bg-custom {
  background-image: none;
  min-height: 100vh;
  position: relative;
}

body.auth-bg-custom:before {
  content: "";
  background-image: var(--auth-bg-image);
  opacity: 0;
  z-index: -10;
  pointer-events: none;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  transition: opacity .8s ease-in-out;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

body.auth-bg-custom.bg-loaded:before {
  opacity: 1;
}

body.auth-bg-custom.bg-optimize {
  background-position: top;
  background-size: cover;
}

@media (max-width: 768px) {
  body.auth-bg-custom:before {
    background-position: center;
    background-size: cover;
    background-attachment: scroll;
  }
}

.auth-bg-custom .login-container {
  z-index: 1;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, .95);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
}

.dark .auth-bg-custom .login-container {
  background: rgba(30, 30, 30, .95);
  border: 1px solid rgba(255, 255, 255, .1);
}

.logo-container img {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .1));
  transition: transform .3s;
}

.logo-container img:hover {
  transform: scale(1.05);
}

.text-success {
  color: #22c55e !important;
}

.animate-fade-in {
  animation: .5s ease-in-out fadeIn;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-pulse {
  animation: 2s cubic-bezier(.4, 0, .6, 1) infinite pulse;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .5;
  }
}

.transition-all {
  transition: all .3s ease-in-out;
}

.transition-opacity {
  transition: opacity .3s ease-in-out;
}

.bg-gray-300 {
  background-color: rgba(255, 255, 255, .7);
  border: none;
}

.bg-gray-200 {
  background-color: rgba(255, 255, 255, .5);
  border: none;
}

.blur-sm {
  filter: blur(4px);
}

.opacity-80 {
  opacity: .8;
}

.opacity-100 {
  opacity: 1;
}

@media (max-width: 768px) {
  body.auth-bg-custom:before {
    background-attachment: scroll;
  }

  .auth-bg-custom .login-container {
    margin: 1rem;
    padding: 1.5rem;
  }
}

.auth-register-glass {
  background: color-mix(in srgb, var(--card) 50%, transparent);
  border: 1px solid var(--glass-border, var(--border));
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px color-mix(in srgb, var(--foreground) 8%, transparent);
  border-radius: 9999px;
  padding: .5rem 1.125rem;
  display: inline-block;
}

.dark .auth-register-glass {
  background: color-mix(in srgb, var(--card) 45%, transparent);
  border: 1px solid var(--glass-border, var(--border));
  box-shadow: 0 2px 12px rgba(0, 0, 0, .3);
}

/*# sourceMappingURL=css_xoffi-auth_3dd1e3da.css.map*/