
/* Base styles and CSS variables */
:root {
  --primary-color: #000000;
  --footer-color: #1f2937; /* Default footer color, will be updated from API */
}

/* Global font family - Inter */
html,
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

* {
  font-family: inherit;
}

/* Skeleton loader animations */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-logo {
  width: 120px;
  height: 40px;
  border-radius: 4px;
}

.skeleton-text {
  height: 16px;
  border-radius: 4px;
  margin: 4px 0;
}

.skeleton-text.short { width: 60%; }
.skeleton-text.medium { width: 80%; }
.skeleton-text.long { width: 100%; }

/* Loader animation */
.loader {
  border: 4px solid rgba(14, 165, 233, 0.1);
  border-radius: 50%;
  border-top: 4px solid var(--primary-color);
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Background section */
.bg-primary-section {
  background-color: #f3f3f3;
}

/* Form styles */
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 1px var(--primary-color);
}

/* Terms checkbox styles */
.terms-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 16px 0;
}

.terms-checkbox input[type="checkbox"] {
  margin-top: 2px;
}

.terms-checkbox label {
  font-size: 14px;
  line-height: 1.5;
  color: #374151;
}

.terms-checkbox a {
  color: var(--primary-color);
  text-decoration: underline;
}
