/* Login page - Infinite Grid style */

.login-page {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  overflow: hidden;
}

/* Grid layers */
.login-grid-bg,
.login-grid-fg {
  position: absolute;
  inset: 0;
  z-index: 0;
  color: rgba(255, 255, 255, 0.15);
}

.login-grid-bg {
  opacity: 0.05;
}

.login-grid-fg {
  opacity: 0.4;
  mask-image: radial-gradient(350px circle at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(350px circle at 50% 50%, black, transparent);
}

.login-grid-svg {
  width: 100%;
  height: 100%;
}

/* Color orbs */
.login-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.login-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.login-orb-1 {
  right: -20%;
  top: -20%;
  width: 40%;
  height: 40%;
  background: rgba(234, 88, 12, 0.25);
}

.login-orb-2 {
  right: 10%;
  top: -10%;
  width: 20%;
  height: 20%;
  background: rgba(90, 122, 90, 0.3);
}

.login-orb-3 {
  left: -10%;
  bottom: -20%;
  width: 40%;
  height: 40%;
  background: rgba(59, 130, 246, 0.2);
}

/* Content */
.login-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 48px;
  pointer-events: none;
}

.login-title {
  font-family: var(--serif, 'Source Serif 4', Georgia, serif);
  font-size: 72px;
  font-weight: 300;
  color: #e0e1dd;
  letter-spacing: -0.02em;
  line-height: 1;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}

.login-google-btn {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  color: #3c4043;
  font-family: var(--sans, 'Inter', sans-serif);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  transition: box-shadow 0.2s, transform 0.2s;
}

.login-google-btn:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
  transform: translateY(-2px);
}

.login-google-btn:active {
  transform: translateY(0);
}

.login-google-btn svg {
  width: 20px;
  height: 20px;
}

/* Mobile */
@media (max-width: 768px) {
  .login-title {
    font-size: 48px;
  }

  .login-google-btn {
    font-size: 14px;
    padding: 12px 24px;
  }
}
