/* Project design tokens from shadcn.css */
:root {
  --background: oklch(0.3211 0 0);
  --foreground: oklch(1 0 0);
  --primary: oklch(0.6361 0.1732 256.0948);
  --font-sans: Inter, sans-serif;
  --font-serif: Source Serif 4, serif;
  --radius: 0.4rem;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  background-image: url("/gradient-abstract-vivo.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  background: oklch(0.3211 0 0 / 0.3);
}

.logo-wrap {
  padding: 2rem;
  width: 100%;
}

.wrapper .logo {
  height: 2rem;
  width: auto;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo {
  height: 2.5rem;
  width: auto;
}

.heading {
  margin: 0;
  font-size: 1.875rem;
  font-weight: 500;
  color: var(--foreground);
  font-family: var(--font-sans);
  letter-spacing: 0.02em;
}
