@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

body {
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom, #1e90ff 0%, #0a66c2 40%, #003366 100%);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.panel {
  position: relative;
  background: rgba(180, 210, 255, 0.35);
  padding: 60px 100px;
  border-radius: 14px;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.25);
  text-align: center;
  animation: fadeIn 0.8s ease-out forwards;
}

.logo {
  width: 200px;
  display: block;
  margin: 0 auto 6px;
}

.gradient-text {
  font-size: 1.8rem;
  margin: 0;
  font-weight: 700;
  background: linear-gradient(to bottom, #7ec8ff, #1e90ff, #0a66c2);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* AUTH BUTTONS */
.auth-buttons {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  gap: 8px;
}

.auth-btn {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(6px);
  color: white;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.2px;
  transition: 0.2s ease;
}

.auth-btn:hover {
  background: rgba(255,255,255,0.35);
}

.auth-btn.signup {
  background: #1e90ff;
}

.auth-btn.signup:hover {
  background: #0a66c2;
}

/* Mobile */
@media (max-width: 480px) {
  .auth-buttons {
    bottom: 8px;
    right: 8px;
    gap: 6px;
  }

  .auth-btn {
    padding: 5px 12px;
    font-size: 0.72rem;
  }

  .panel {
    padding: 40px 40px;
  }

  .logo {
    width: 150px;
  }
}
