/* [project]/src/components/auth/auth.scss.css [app-client] (css) */
.auth-layout {
  background-image: url("/images/login-bg.jpg");
  background-position: center;
  background-size: cover;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.auth-logo {
  z-index: 10;
  position: absolute;
  top: 32px;
  left: 32px;
}

.auth-logo img {
  height: 50px;
}

.auth-card-wrapper {
  z-index: 2;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  padding-right: 80px;
  display: flex;
  position: relative;
}

.auth-card {
  background: #fff;
  border-radius: 12px;
  width: 380px;
  padding: 52px 28px;
  box-shadow: 0 10px 30px #00000026;
}

.auth-card h2 {
  text-align: center;
  margin-bottom: 4px;
  font-size: 22px;
  font-weight: 600;
}

.auth-card .subtitle {
  text-align: center;
  color: #6b7280;
  margin-bottom: 24px;
  font-size: 14px;
}

.auth-actions {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  display: flex;
}

@media (max-width: 768px) {
  .auth-card-wrapper {
    justify-content: center;
    padding-right: 0;
  }

  .auth-card {
    width: 100%;
    max-width: 380px;
  }
}

/*# sourceMappingURL=src_components_auth_auth_scss_4b085e79.css.map*/