/* ==========================================================================
   INDUSTRIAL UTILITARIAN DESIGN SYSTEM
   FBT Declaration Application
   ========================================================================== */

/* 1. CSS CUSTOM PROPERTIES
   ========================================================================== */

:root {
  /* Institutional Foundation */
  --slate-900: #1e293b;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;

  /* Authority Blue */
  --authority-primary: #1e40af;
  --authority-dark: #1e3a8a;
  --authority-light: #3b82f6;
  --authority-subtle: #dbeafe;

  /* Success/Completion */
  --success-primary: #166534;
  --success-light: #22c55e;
  --success-subtle: #dcfce7;

  /* Alert State */
  --warning-primary: #d97706;
  --warning-subtle: #fef3c7;

  /* Error State */
  --error-primary: #dc2626;
  --error-subtle: #fee2e2;

  /* Document Colors */
  --paper-base: #fafafa;
  --paper-texture: #f5f5f5;
  --ink-primary: #1a1a1a;
  --ink-secondary: #525252;

  /* Border Colors */
  --border-light: #e5e7eb;
  --border-medium: #d1d5db;

  /* Typography */
  --font-display: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;
  --font-body: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing System (8px base) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;

  /* Layout */
  --container-max: 1024px;
  --container-max-narrow: 720px;
  --container-padding: 32px;
  --container-padding-mobile: 16px;

  /* Shadows */
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-elevated: 0 4px 12px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --ease-precise: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* Focus Ring */
  --focus-ring: 0 0 0 3px rgba(30, 64, 175, 0.3);
}

/* 2. FONT FACE DECLARATIONS
   ========================================================================== */

@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('JetBrains Mono'), local('JetBrainsMono-Regular'),
       url('/assets/fonts/jetbrains-mono-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local('JetBrains Mono'), local('JetBrainsMono-Medium'),
       url('/assets/fonts/jetbrains-mono-medium.woff2') format('woff2');
}

@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Source Sans Pro'), local('SourceSansPro-Regular'),
       url('/assets/fonts/source-sans-pro-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local('Source Sans Pro'), local('SourceSansPro-SemiBold'),
       url('/assets/fonts/source-sans-pro-semibold.woff2') format('woff2');
}

@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local('Source Sans Pro'), local('SourceSansPro-Bold'),
       url('/assets/fonts/source-sans-pro-bold.woff2') format('woff2');
}

/* 3. BASE TYPOGRAPHY
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-primary);
  background-color: var(--paper-base);
  margin: 0;
  padding: 0;
}

/* 4. DOCUMENT TEXTURE
   ========================================================================== */

.document-texture {
  position: relative;
}

.document-texture::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* 5. LAYOUT CONTAINERS
   ========================================================================== */

.fbt-declaration-app {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-6) var(--container-padding);
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .fbt-declaration-app {
    max-width: var(--container-max-narrow);
  }
}

@media (max-width: 768px) {
  .fbt-declaration-app {
    padding: var(--space-4) var(--container-padding-mobile);
  }
}

/* 6. LOADING STATE
   ========================================================================== */

.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  padding: var(--space-10);
}

.loading-indicator {
  width: 40px;
  height: 40px;
  border: 3px solid var(--slate-200);
  border-top-color: var(--authority-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loading-text {
  margin-top: var(--space-4);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--slate-500);
  letter-spacing: 0.5px;
}

/* 7. FORM HEADER
   ========================================================================== */

.form-header {
  background: white;
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--authority-primary);
  padding: var(--space-6);
  margin-bottom: var(--space-6);
  box-shadow: var(--shadow-card);
}

/* Header top container with flexbox for title + logo */
.form-header__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-4);
  margin-bottom: var(--space-3);
}

.form-header__title {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  color: var(--slate-900);
  margin: 0;
  letter-spacing: -0.02em;
  flex: 1;
}

/* Logo styling */
.form-header__logo {
  max-height: 60px;
  max-width: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.form-header__divider {
  height: 1px;
  background: linear-gradient(90deg, var(--authority-primary) 0%, transparent 100%);
  margin: var(--space-4) 0;
  opacity: 0.5;
}

/* Contract Info Grid */
.contract-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-4);
}

@media (min-width: 768px) {
  .contract-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.contract-item {
  display: flex;
  flex-direction: column;
}

.contract-item--wide {
  grid-column: span 2;
}

@media (max-width: 767px) {
  .contract-item--wide {
    grid-column: span 1;
  }

  .form-header__top {
    flex-direction: column;
    align-items: stretch;
  }

  .form-header__logo {
    align-self: flex-end;
    max-height: 50px;
  }
}

.contract-item--full-width {
  grid-column: 1 / -1;
}

.contract-item__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-500);
  margin-bottom: var(--space-1);
}

.contract-item__value {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-900);
  background: var(--slate-50);
  padding: var(--space-2) var(--space-3);
  border-radius: 4px;
  border: 1px solid var(--slate-200);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.contract-item__value:hover {
  overflow: visible;
  white-space: normal;
}

.contract-item__value--nowrap {
  white-space: nowrap;
}

@media (max-width: 767px) {
  .contract-item__value {
    white-space: normal;
    font-size: 13px;
  }

  .contract-item__value--nowrap {
    white-space: normal;
  }
}

/* 8. FORM CARD
   ========================================================================== */

.form-card {
  background: white;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.form-card__section {
  padding: var(--space-6);
  border-bottom: 1px solid var(--border-light);
}

.form-card__section:last-child {
  border-bottom: none;
}

/* Two Column Layout for Desktop */
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

@media (min-width: 768px) {
  .form-row--two-col {
    grid-template-columns: 1fr 1fr;
  }
}

.form-card__section--inline {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .form-card__section--inline {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

/* 9. SECTION HEADERS
   ========================================================================== */

.section-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.section-header__icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--authority-subtle);
  border-radius: 6px;
  font-size: 14px;
}

.section-header__title {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--slate-900);
  margin: 0;
  letter-spacing: -0.01em;
}

/* Disclaimer Section */
.disclaimer-section {
  background: var(--warning-subtle);
  border: 1px solid rgba(217, 119, 6, 0.2);
  border-left: 4px solid var(--warning-primary);
}

.disclaimer-section .section-header__icon {
  background: rgba(217, 119, 6, 0.15);
  color: var(--warning-primary);
}

.disclaimer-section .section-header__title {
  color: var(--warning-primary);
}

.disclaimer-content {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-secondary);
}

.disclaimer-content p {
  margin: 0 0 var(--space-4) 0;
}

.disclaimer-content p:last-child {
  margin-bottom: 0;
}

/* 10. FORM INPUTS
   ========================================================================== */

.form-group {
  margin-bottom: var(--space-5);
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: var(--space-2);
  letter-spacing: 0.02em;
}

.form-label--required::after {
  content: ' *';
  color: var(--error-primary);
}

.form-input {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--slate-900);
  background: white;
  border: 2px solid var(--border-medium);
  border-radius: 6px;
  transition: border-color 0.15s var(--ease-precise),
              box-shadow 0.15s var(--ease-precise);
}

.form-input:hover {
  border-color: var(--slate-400);
}

.form-input:focus {
  outline: none;
  border-color: var(--authority-primary);
  box-shadow: var(--focus-ring);
}

.form-input::placeholder {
  color: var(--slate-400);
}

.form-input--error {
  border-color: var(--error-primary);
}

.form-input--error:focus {
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
}

/* Number Input Specific */
.form-input[type="number"] {
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}

/* Date Input Specific */
.form-input[type="date"] {
  font-family: var(--font-body);
  cursor: pointer;
}

/* 11. CHECKBOX
   ========================================================================== */

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  cursor: pointer;
  padding: var(--space-3);
  border-radius: 6px;
  transition: background-color 0.15s ease;
}

.checkbox-wrapper:hover {
  background: rgba(0, 0, 0, 0.02);
}

.checkbox-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkbox-box {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid var(--border-medium);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s var(--ease-precise);
  background: white;
  margin-top: 1px;
}

.checkbox-input:checked + .checkbox-box {
  background: var(--authority-primary);
  border-color: var(--authority-primary);
}

.checkbox-input:checked + .checkbox-box::after {
  content: '✓';
  color: white;
  font-size: 12px;
  font-weight: 700;
}

.checkbox-input:focus + .checkbox-box {
  box-shadow: var(--focus-ring);
}

.checkbox-input.error + .checkbox-box {
  border-color: var(--error-primary);
}

.checkbox-label {
  font-size: 14px;
  color: var(--ink-primary);
  line-height: 1.5;
  padding-top: 1px;
}

/* 12. ERROR MESSAGES
   ========================================================================== */

.error-message {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-2);
  font-size: 13px;
  color: var(--error-primary);
  animation: slideDown 0.2s var(--ease-precise);
}

.error-message::before {
  content: '!';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  min-width: 16px;
  background: var(--error-subtle);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 13. FORM ACTIONS
   ========================================================================== */

.form-actions {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-6);
  background: var(--slate-50);
  border-top: 1px solid var(--border-light);
}

.form-actions--mobile-stacked {
  flex-direction: column;
}

.form-actions--mobile-stacked .btn {
  width: 100%;
}

/* 14. BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s var(--ease-precise);
  text-decoration: none;
  min-height: 44px;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn--primary {
  background: var(--authority-primary);
  color: white;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn--primary:hover:not(:disabled) {
  background: var(--authority-dark);
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.btn--primary:active:not(:disabled) {
  transform: translateY(0);
}

.btn--secondary {
  background: white;
  color: var(--slate-700);
  border: 1px solid var(--border-medium);
}

.btn--secondary:hover:not(:disabled) {
  background: var(--slate-50);
  border-color: var(--slate-400);
}

.btn--loading {
  position: relative;
  color: transparent;
}

.btn--loading::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.btn--secondary.btn--loading::after {
  border-color: rgba(100, 116, 139, 0.3);
  border-top-color: var(--slate-700);
}

/* 15. ALERTS
   ========================================================================== */

.alert {
  padding: var(--space-4) var(--space-5);
  border-radius: 6px;
  margin-bottom: var(--space-6);
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.alert--success {
  background: var(--success-subtle);
  border: 1px solid rgba(22, 101, 52, 0.2);
  border-left: 4px solid var(--success-primary);
  color: var(--success-primary);
}

.alert--error {
  background: var(--error-subtle);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-left: 4px solid var(--error-primary);
  color: var(--error-primary);
}

.alert__icon {
  font-size: 16px;
  line-height: 1;
}

.alert__content {
  font-size: 14px;
  line-height: 1.6;
}

/* 16. SUCCESS STATE
   ========================================================================== */

.success-state {
  text-align: center;
  padding: var(--space-10) var(--space-6);
}

.success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-6);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.25) 0%, rgba(34, 197, 94, 0.15) 100%);
  border: 2px solid rgba(34, 197, 94, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--success-primary);
  font-weight: 700;
  animation: scaleIn 0.3s var(--ease-bounce);
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.success-title {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  color: var(--slate-900);
  margin: 0 0 var(--space-3) 0;
}

.success-message {
  font-size: 15px;
  color: var(--ink-secondary);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

/* 16. SUCCESS STATE VISUAL INTEGRATION WITH HEADER
   ========================================================================== 
   Creates a seamless visual connection between the header and success card
   when displayed together on the Thank You page.
   ========================================================================== */

/* Base spacing between header and success card */
.form-header + .form-card {
  margin-top: var(--space-6);
}

/* Seamless connection: Join header and success card visually */
.form-header:has(+ .form-card .success-state) {
  margin-bottom: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.form-header:has(+ .form-card .success-state) + .form-card {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  margin-top: 0;
  border-top: 4px solid var(--success-primary);
  box-shadow: var(--shadow-card);
  background: linear-gradient(to bottom, 
    rgba(220, 252, 231, 1) 0%,
    rgba(240, 253, 244, 0.95) 40%,
    rgba(249, 255, 251, 0.85) 100%
  );
}

/* Subtle visual refinement of contract grid in success state */
.form-header:has(+ .form-card .success-state) .contract-grid {
  opacity: 0.92;
  transition: opacity 0.2s ease;
}

.form-header:has(+ .form-card .success-state) .contract-item__value {
  background: linear-gradient(135deg, var(--slate-50) 0%, white 100%);
  border-color: var(--slate-200);
}

/* Enhanced success icon with pulse animation */
@keyframes successPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
  }
  50% {
    box-shadow: 0 0 0 16px rgba(34, 197, 94, 0);
  }
}

.success-icon {
  animation: scaleIn 0.3s var(--ease-bounce), 
             successPulse 2s ease-out 0.3s;
}

/* Subtle glow effect for success state */
.success-state {
  position: relative;
  background: rgba(240, 253, 244, 0.6);
  border-radius: 8px;
  padding: var(--space-2);
  margin: var(--space-2);
}

.success-state::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 100px;
  background: radial-gradient(ellipse at center, 
    rgba(34, 197, 94, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.success-state > * {
  position: relative;
  z-index: 1;
}

/* Accessibility: Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .success-icon {
    animation: scaleIn 0.3s var(--ease-bounce);
  }
  
  .form-header:has(+ .form-card .success-state) .contract-grid {
    transition: none;
  }
}

/* Responsive adjustments for success state integration */
@media (max-width: 768px) {
  .form-header + .form-card {
    margin-top: var(--space-4);
  }
  
  .success-state::before {
    width: 150px;
    height: 80px;
  }
}

/* 17. RESPONSIVE UTILITIES
   ========================================================================== */

@media (max-width: 1024px) {
  .form-row--two-col {
    grid-template-columns: 1fr;
  }

  .form-card__section--inline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contract-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-card__section {
    padding: var(--space-4);
  }

  .form-actions {
    flex-direction: column;
    gap: var(--space-3);
  }

  .form-actions .btn {
    width: 100%;
  }

  .section-header {
    margin-bottom: var(--space-4);
  }

  .form-header {
    padding: var(--space-4);
  }

  .form-header__title {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .contract-grid {
    grid-template-columns: 1fr;
  }

  .contract-item__value {
    font-size: 13px;
    padding: var(--space-1) var(--space-2);
  }

  .form-actions {
    position: sticky;
    bottom: 0;
    background: var(--slate-50);
    margin: 0 calc(var(--container-padding-mobile) * -1);
    padding: var(--space-4) var(--container-padding-mobile);
    border-top: 1px solid var(--border-light);
  }
}

/* Desktop Optimizations */
@media (min-width: 1024px) {
  .form-card__section {
    padding: var(--space-8);
  }

  .form-header {
    padding: var(--space-8);
  }

  .form-header__title {
    font-size: 24px;
  }

  .disclaimer-content {
    font-size: 15px;
    max-width: 800px;
  }
}

/* 18. ACCESSIBILITY
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus visible for keyboard navigation */
:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --border-light: #000;
    --border-medium: #000;
    --slate-500: #000;
  }

  .form-card,
  .form-header {
    border-width: 2px;
  }
}

/* 19. COPYRIGHT FOOTER
   ========================================================================== */

.copyright-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
  padding-top: var(--space-3);
  margin-top: var(--space-4);
  font-family: var(--font-display);
  font-size: 10px;
  color: var(--slate-500);
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.copyright-text {
  color: var(--slate-600);
}

.copyright-separator {
  color: var(--slate-400);
}

.copyright-link {
  color: var(--slate-600);
  text-decoration: none;
  transition: color 0.2s var(--ease-precise);
}

.copyright-link:hover {
  color: var(--authority-primary);
  text-decoration: underline;
}

.copyright-link:focus {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: 2px;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .copyright-footer {
    font-size: 9px;
    padding-top: var(--space-2);
    margin-top: var(--space-3);
  }
}

/* 20. PRINT STYLES
   ========================================================================== */

@media print {
  .copyright-footer {
    display: none !important;
  }

  .form-actions,
  .btn {
    display: none !important;
  }

  .form-card {
    box-shadow: none;
    border: 1px solid #000;
  }

  .form-input {
    border: 1px solid #000;
  }
}
