@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Tinos:ital,wght@0,400;0,700;1,400;1,700&display=swap");

/* LIGHT THEME – BELLA */
:root {
  --background: oklch(0.983 0.011 63.4);
  --foreground: oklch(0.255 0.024 55.1);

  --card: oklch(1 0 0);
  --card-foreground: oklch(0.255 0.024 55.1);

  --primary: oklch(0.515 0.078 51.7);
  --primary-foreground: oklch(0.985 0 0);

  --muted: oklch(0.924 0.011 54.5);
  --muted-foreground: oklch(0.503 0.014 51.1);

  --border: oklch(0.893 0.003 48.7);
  --ring: oklch(0.515 0.078 51.7);

  --radius: 0.75rem;

  --destructive: oklch(0.63 0.161 30.4);
  --destructive-foreground: oklch(0.985 0 0);
}

/* Base Layout */

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--background);
  color: var(--foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.card {
  background: var(--card);
  color: var(--card-foreground);
  padding: 3rem;
  border-radius: var(--radius);
  max-width: 420px;
  width: 90%;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(6px);
}

h1 {
  margin: 0 0 0.75rem 0;
  font-weight: 600;
}

p {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 0.95rem;
}

button {
  margin-top: 2rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  border: none;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition:
    opacity 0.2s ease,
    transform 0.1s ease;
}

button:hover {
  opacity: 0.9;
}

button:active {
  transform: scale(0.98);
}

.error-title {
  color: var(--destructive);
}
