:root {
  --clear-blue:        #2A65E3;
  --clear-blue-hover:  #2b6cb0;
  --clear-blue-dark:   #2c5282;
  --clear-bg:          #f7fafc;
  --clear-card-bg:     #ffffff;
  --clear-border:      #e2e8f0;
  --clear-text:        #1a202c;
  --clear-text-muted:  #718096;
  --clear-focus-ring:  rgba(42, 101, 227, 0.4);
}

.btn-primary {
  --bs-btn-bg:           #2A65E3;
  --bs-btn-border-color: #2A65E3;
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  margin-bottom: 60px;
  background-color: var(--clear-bg);
  color: var(--clear-text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem var(--clear-focus-ring);
}

html {
  position: relative;
  min-height: 100%;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--clear-text-muted);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.logo-xs {
    max-height: 2rem;
    max-width: 2rem;
}

.logo-sm {
    max-height: 2rem;
    max-width: 6rem;
}

.logo-md {
    max-height: 3rem;
    max-width: 10rem;
}

.logo-lg {
    max-height: 6rem;
    max-width: 16rem;
}

.logo-xl {
    max-height: 8rem;
    max-width: 20rem;
}

.wizard {
    width: 30rem;
    border-radius: 12px;
    border: 1px solid var(--clear-border);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    background-color: var(--clear-card-bg);
}

.wizard .card-body {
    padding: 2rem;
}

.btn {
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.5rem 1.5rem;
    transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
