/**
 * Landing Page Styles
 * Split-screen layout: Branding left, Form right
 */

.landing-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 100vh;
}

/* Brand Side */
.brand-side {
  background: linear-gradient(135deg, var(--color-charcoal) 0%, var(--color-midnight) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-2xl);
  position: relative;
  overflow: hidden;
}

.brand-side::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.brand-content {
  max-width: 500px;
  position: relative;
  z-index: 1;
}

.brand-logo {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--spacing-md);
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-ember) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-tagline {
  font-size: 24px;
  color: var(--color-silver);
  margin-bottom: var(--spacing-2xl);
  line-height: 1.4;
}

.brand-features {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.feature-item {
  display: flex;
  gap: var(--spacing-md);
  align-items: flex-start;
}

.feature-icon {
  font-size: 32px;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(249, 115, 22, 0.1);
  border-radius: var(--radius-lg);
}

.feature-text h3 {
  font-size: 18px;
  margin-bottom: var(--spacing-xs);
  color: var(--color-white);
}

.feature-text p {
  font-size: 14px;
  color: var(--color-steel);
  line-height: 1.5;
}

/* Form Side */
.form-side {
  background-color: var(--color-midnight);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-2xl);
}

.form-container {
  width: 100%;
  max-width: 420px;
}

.form-container h2 {
  font-size: 32px;
  margin-bottom: var(--spacing-sm);
  color: var(--color-white);
}

.form-subtitle {
  font-size: 16px;
  color: var(--color-steel);
  margin-bottom: var(--spacing-xl);
}

.auth-form {
  margin-bottom: var(--spacing-lg);
}

.form-footer {
  text-align: center;
  padding-top: var(--spacing-lg);
  border-top: 1px solid var(--color-slate);
}

.form-footer p {
  color: var(--color-steel);
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .split-layout {
    grid-template-columns: 1fr;
  }

  .brand-side {
    display: none;
  }

  .form-side {
    min-height: 100vh;
  }

  .brand-logo {
    font-size: 36px;
  }

  .brand-tagline {
    font-size: 20px;
  }
}

@media (max-width: 640px) {
  .form-side {
    padding: var(--spacing-lg);
  }

  .form-container h2 {
    font-size: 28px;
  }
}
