/* [project]/src/app/auth.module.css [app-client] (css) */
.auth-module__A_DBwq__authPage {
  color: #fff;
  background: #0f172a;
  min-height: 100vh;
  display: flex;
}

.auth-module__A_DBwq__authLeft {
  z-index: 2;
  background: #0f172a;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  max-width: 580px;
  padding: 40px 60px;
  display: flex;
  position: relative;
}

.auth-module__A_DBwq__backBtn {
  color: #94a3b8;
  border-radius: 8px;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
  display: flex;
  position: absolute;
  top: 32px;
  left: 40px;
}

.auth-module__A_DBwq__backBtn:hover {
  color: #fff;
  background: #ffffff0d;
}

.auth-module__A_DBwq__authContent {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  animation: .6s ease-out auth-module__A_DBwq__fadeIn;
}

.auth-module__A_DBwq__logo {
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  text-decoration: none;
  display: flex;
}

.auth-module__A_DBwq__logoText {
  letter-spacing: -.02em;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
}

.auth-module__A_DBwq__authHeader {
  margin-bottom: 32px;
}

.auth-module__A_DBwq__authHeader h1 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 32px;
  font-weight: 700;
}

.auth-module__A_DBwq__authHeader p {
  color: #94a3b8;
  font-size: 16px;
}

.auth-module__A_DBwq__authForm {
  flex-direction: column;
  gap: 20px;
  display: flex;
}

.auth-module__A_DBwq__inputGroup {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.auth-module__A_DBwq__inputGroup label {
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 500;
}

.auth-module__A_DBwq__input {
  color: #fff;
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 15px;
  transition: all .2s;
}

.auth-module__A_DBwq__input:focus {
  border-color: #6366f1;
  outline: none;
  box-shadow: 0 0 0 3px #6366f133;
}

.auth-module__A_DBwq__submitBtn {
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border: none;
  border-radius: 12px;
  margin-top: 8px;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  transition: all .2s;
}

.auth-module__A_DBwq__submitBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px #6366f14d;
}

.auth-module__A_DBwq__submitBtn:disabled {
  opacity: .7;
  cursor: not-allowed;
  transform: none;
}

.auth-module__A_DBwq__divider {
  color: #64748b;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
  font-size: 14px;
  display: flex;
}

.auth-module__A_DBwq__divider:before, .auth-module__A_DBwq__divider:after {
  content: "";
  background: #334155;
  flex: 1;
  height: 1px;
}

.auth-module__A_DBwq__googleBtn {
  color: #0f172a;
  cursor: pointer;
  background: #fff;
  border: none;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px;
  font-weight: 600;
  transition: transform .2s;
  display: flex;
}

.auth-module__A_DBwq__googleBtn:hover {
  background: #f8fafc;
  transform: translateY(-2px);
}

.auth-module__A_DBwq__authFooter {
  text-align: center;
  color: #94a3b8;
  margin-top: 32px;
  font-size: 14px;
}

.auth-module__A_DBwq__authFooter a {
  color: #818cf8;
  margin-left: 4px;
  font-weight: 600;
  text-decoration: none;
}

.auth-module__A_DBwq__authFooter a:hover {
  text-decoration: underline;
}

.auth-module__A_DBwq__authRight {
  background: radial-gradient(circle, #1e1b4b 0%, #020617 100%);
  flex: 1.2;
  justify-content: center;
  align-items: center;
  padding: 60px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.auth-module__A_DBwq__orb {
  filter: blur(80px);
  background: linear-gradient(135deg, #6366f166, #ec489966);
  border-radius: 50%;
  width: 600px;
  height: 600px;
  animation: 8s infinite alternate auth-module__A_DBwq__pulse-glow;
  position: absolute;
}

.auth-module__A_DBwq__showcase {
  z-index: 10;
  text-align: center;
  color: #fff;
  max-width: 480px;
  position: relative;
}

.auth-module__A_DBwq__showcase h2 {
  background: linear-gradient(to right, #fff, #a5b4fc);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 800;
}

.auth-module__A_DBwq__showcase p {
  color: #cbd5e1;
  opacity: .9;
  font-size: 18px;
  line-height: 1.6;
}

@keyframes auth-module__A_DBwq__fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

@keyframes auth-module__A_DBwq__pulse-glow {
  0% {
    opacity: .5;
    transform: scale(1);
  }

  100% {
    opacity: .8;
    transform: scale(1.1);
  }
}

@media (max-width: 1024px) {
  .auth-module__A_DBwq__authRight {
    display: none;
  }

  .auth-module__A_DBwq__authLeft {
    max-width: 100%;
    padding: 40px;
  }
}

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