/* =========================
   Anabada Login / Auth Page
========================= */

body.anabada-auth{
  min-height: 100vh;
  margin: 0;
  background: linear-gradient(135deg, #f7f8fc, #eef1ff);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Card wrapper */
.auth-wrap {
  width: 100%;
  max-width: 420px;
  padding: 20px;
}

/* Card */
.auth-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 42px 36px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  text-align: center;
}

/* Title */
.auth-title {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

/* Subtitle */
.auth-sub {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 32px;
}

/* Provider area */
.auth-provider {
  margin-bottom: 26px;
}

/* Google button polish (Nextend) */
.auth-provider a,
.auth-provider button {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 18px !important;
  border-radius: 14px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  border: 1px solid #e4e6f0 !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease;
}

/* Hover */
.auth-provider a:hover,
.auth-provider button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

/* Footer text */
.auth-footer {
  font-size: 13px;
  color: #888;
  line-height: 1.5;
}

.auth-brand {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  color: #5568ff; /* Anabada Blue */
}


/* Mobile tweak */
@media (max-width: 480px) {
  .auth-card {
    padding: 34px 26px;
  }

  .auth-title {
    font-size: 28px;
  }
}

body.anabada-auth{
  outline: 6px solid red !important;
}
