/* Authentication Styles */

.auth-form {
  max-width: 480px;
  margin: 5rem auto;
  padding: 3.5rem;
  background: white;
  border-radius: 2rem;
  box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(226, 232, 240, 0.8);
  text-align: center;
}

.auth-logo {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), #8b5cf6);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  font-weight: 800;
  box-shadow: 0 10px 20px -5px rgba(59, 130, 246, 0.4);
}

.auth-logo-img {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: block;
  border-radius: 16px;
  box-shadow: 0 10px 20px -5px rgba(59, 130, 246, 0.4);
}

.auth-header h1 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.auth-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.google-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: white;
  color: #374151;
  border: 1px solid #e5e7eb;
  padding: 0.8rem 1.5rem;
  font-weight: 600;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.2s;
  border-radius: 9999px;
}

.google-btn:hover {
  background: #f9fafb;
  border-color: #d1d5db;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.google-btn svg { width: 24px; height: 24px; }
@media (max-width: 640px) {
  .auth-form {
    margin: 2rem 1rem;
    padding: 2rem 1.5rem;
    border-radius: 1.5rem;
  }

  .auth-header h1 {
    font-size: 1.5rem;
  }
}
