:root {
  --color-bk-cream: #fbf5e9;
  --color-bk-gold: #c5a059;
  --color-bk-gold-light: #e6c887;
  --color-bk-red: #a91b0d;
  --color-bk-red-dark: #7a0c04;
  --color-bk-navy: #0a1128;
  --color-bk-dark: #343a40;
}

body {
  background-color: var(--color-bk-cream);
  color: var(--color-bk-dark);
  font-family: 'Inter', 'Roboto', sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

.shadow-soft {
  box-shadow: 0 10px 40px -10px rgba(0,0,0,0.08);
}

.input-field {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
  transition: all 0.2s;
}
.input-field:focus {
  outline: none;
  border-color: transparent;
  box-shadow: 0 0 0 2px var(--color-bk-gold);
}

.btn-primary {
  width: 100%;
  background: linear-gradient(to right, #78350f, #92400e);
  border: 1px solid #451a03;
  color: #ffffff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.2s;
}
.btn-primary:hover {
  background: linear-gradient(to right, #92400e, #b45309);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-secondary {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  color: #374151;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.2s;
}
.btn-secondary:hover {
  background-color: #f9fafb;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1; 
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8; 
}
