:root {
  --font-family: Inter, sans-serif;
  --font-feature-settings: 'liga' 1, 'calt' 1; /* fix for Chrome */
  --green: #238636;
  --green-1: #26933B;
  --secondary: #e5e7eb;
  --secondary-1: #000;
  --font-size: max(1.375rem, 2.225vw);
  --font-size-xxxx-small: max(0.875rem, 50%);
  --font-size-xxx-small: max(0.9375rem, 60%);
  --font-size-xx-small: max(1rem, 65%);
  --font-size-x-small: max(1.0625rem, 75%);
  --font-size-small: 1.4rem;
  --font-size-medium: 1.75rem;
  --font-size-large: 2rem;
  --font-size-x-large: 2.2rem;
  --font-size-xx-large: 2.75rem;
  --letter-spacing-loose: -0.0175em;
  --letter-spacing: -0.025em;
  --letter-spacing-tight: -0.03375em;
  --letter-spacing-x-tight: -0.04125em;
  --color-gray-200: #e5e7eb;
  --color-slate-500: oklch(55.4% 0.046 257.417);
  --color-slate-700: oklch(37.2% 0.044 257.287);
  --color-slate-800: #1d293d;
  --color-white: #ffffff;
  --color-offwhite: #f8fafc;
  --color-qmaps-blue: #7FDEF0;
  --color-qmaps-blue-dark: #67B4C2;
  --color-qmaps-blue-light: #ccf2f9;
  --color-purple: hsl(264.8, 76.7%, 76.5%);
  --color-purple-20: hsl(255, 9.2%, 25.5%);
  --color-green: hsl(135, 76.7%, 76.5%);
  --color-green-20: hsl(135, 20%, 88%);
  --color-white: hsl(0, 0%, 100%);
  --color-body: hsl(202.5, 42.1%, 7.5%);
  --color-canvas: hsl(200, 28%, 15%);
  --color-card: hsl(200, 28%, 14.7%);
  --color-blue: rgb(37, 99, 235);
  --color-sky-500: oklch(.685 .169 237.323);
  --color-sky-400: oklch(.746 .16 232.661);
}
@supports (font-variation-settings: normal) {
  :root { font-family: InterVariable, sans-serif; }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family);
}
body {
    font-size: 16px;
    background: var(--color-body);
}
.container {
    margin:  auto;
    max-width: 1200px; /* Constrain width for centering */
    padding: 0 8px; /* Smaller padding for <640px screens */
}
h2 {
  color: #fff;
}
.flex-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  min-height: 80vh;
}
.logo-parent {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.logo {
    display: inline-flex;
    align-items: center; /* vertical alignment */
}
.logo-svg {
    width: 200px;
    display: inline-block;
}
.logo-text {
  color: var(--color-white);
}
.form-box {
  max-width: 480px;
  width: 100%;
  /*width: 480px;*/
  background: var(--color-canvas);
  padding: 2rem;
  border-radius: 0.5rem;
  border: 1px solid var(--color-white);
  color: var(--color-white);
}
.form-box h2 {
  text-align: center;
}
input {
  width: 100%;
  line-height: 1.5;
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid #000; /* Default border */
}
.form-label input:focus {
  border: 1px solid var(--green);
  outline: none;
}
.form-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 1rem 0;
}
.form-label {
  margin: 1rem 0;
}
.form-label label {
  display: block;
  font-size: var(--font-size-xxx-small);
  margin-bottom: 0.5rem;
}
.form-label span {
  text-align: center;
  display: block;
  font-size: var(--font-size-xxx-small);
  margin-bottom: 0.5rem;
}
.bottom {
  color: var(--color-white);
  margin: 1rem 0;
}
.bottom a {
  color: var(--color-blue);
  font-weight: 900;
}
.google-btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 6px;
  background-color: #ffffff;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border: 1px solid #d1d5db;
  border-color: #d1d5db inset;
  transition: background-color 0.2s ease;
}
.google-btn:hover {
  background-color: #f9fafb;
}
.google-btn:focus-visible {
  outline: none;
  border-color: transparent;
}
.google-svg {
  height: 20px;
  width: 20px;
}
.google-btn {
  text-decoration: none;
}
.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1.5px solid transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    padding: 8px 12px;
    font-size: var(--font-size-xxxx-small);
    line-height: 1.5;
    border-radius: 6px;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn:focus, .btn:hover {
    text-decoration: none;
    cursor: pointer;
}
.btn-primary {
    color: #fff;
    background-color: var(--green);
    border-color: var(--green);
}
.btn-full-width{
  width: 100%;
}
.btn-primary:hover {
    background-color: var(--green-1);
    border-color: var(--green-1);
}
@media (min-width: 640px) {
  .container {
      padding: 0 24px;
  }
}
@media (min-width: 1024px) {
  .container {
      padding: 0 32px;
  }
}
