/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Subtle gray → yellow gradient background */
  background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 40%, #fff2cc 100%);

  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.container {
  text-align: center;
  max-width: 720px;
  padding: 48px 24px;
}

.logo {
  max-width: 240px;
  height: auto;
  margin-bottom: 36px;
}

h1 {
  font-size: 2.4rem;
  font-weight: 600;
  margin: 0 0 14px 0;
  color: #333333;
  letter-spacing: -0.02em;
}

p {
  font-size: 1.15rem;
  font-weight: 400;
  color: #5f6368;
  margin: 0;
}
