  @import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@300;400;500;600;700&display=swap');


:root {
  --font-size: 14px;
  --text-h1: 32px;
  --text-h2: 17px;
  --text-h3: 16px;
  --text-h4: 15px;
  --text-base: 16px;
  --text-label: 12px;
  --font-urbanist: 'Urbanist', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --background: rgba(255, 255, 255, 1.00);
  --foreground: rgba(26, 26, 26, 1.00);
  --card: rgba(0, 0, 0, 0);
  --card-foreground: rgba(26, 26, 26, 1.00);
  --primary: rgba(118, 83, 253, 1.00);
  --primary-foreground: rgba(255, 255, 255, 1.00);
  --muted: rgba(204, 204, 204, 1.00);
  --muted-foreground: rgba(128, 128, 128, 1.00);
  --border: rgba(230, 230, 230, 1.00);
  --input-background: rgba(0, 0, 0, 0);
  --ring: rgba(118, 83, 253, 1.00);
  --radius: 10px;
  --radius-button: 10px;
  --radius-card: 10px;
  --elevation-sm: 0px 8px 10px 0px rgba(82, 82, 82, 0.25);
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-normal: 400;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-urbanist);
  font-size: var(--text-base);
  font-weight: var(--font-weight-normal);
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
}


.fullscreen {
  min-height: 100vh;
  height: 100%;
  background: linear-gradient(180deg, #7653FD 0%, #FF7C9B 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 32px;
}


.legal-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--elevation-sm);

  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  align-content: center;
  align-items: flex-start;
}

.legal-flex {
  position: relative;
  width: 100%;
  order: 0;
  flex: 1 1 auto;
  align-self: stretch;
  flex-grow: 1;
  overflow: auto;
}
