/* Authentication Styles */

.auth-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 2rem 1rem;
  gap: 4rem;
}

.auth-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
  width: 100%;
  max-width: 400px;
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-title {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 0.5rem 0;
}

.auth-subtitle {
  color: var(--gray-600);
  margin: 0;
}

.auth-form {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.btn--full {
  width: 100%;
}

.auth-footer {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
}

.auth-footer-text {
  color: var(--gray-600);
  margin: 0;
}

.auth-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.auth-link:hover {
  text-decoration: underline;
}

/* Features Section */
.auth-features {
  color: var(--white);
  max-width: 400px;
}

.auth-features-title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin: 0 0 1.5rem 0;
  text-align: center;
}

.auth-features-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.auth-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.auth-feature-icon {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius);
  flex-shrink: 0;
}

.auth-feature-title {
  font-size: var(--font-size-base);
  font-weight: 600;
  margin: 0 0 0.25rem 0;
}

.auth-feature-text {
  font-size: var(--font-size-sm);
  opacity: 0.9;
  margin: 0;
  line-height: 1.5;
}

/* Benefits Section */
.auth-benefits {
  color: var(--white);
  max-width: 300px;
}

.auth-benefits-title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin: 0 0 1.5rem 0;
  text-align: center;
}

.auth-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.auth-benefit {
  padding: 0.75rem 0;
  font-size: var(--font-size-base);
  opacity: 0.95;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .auth-container {
    flex-direction: column;
    gap: 2rem;
  }
  
  .auth-features,
  .auth-benefits {
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .auth-container {
    padding: 1rem;
  }
  
  .auth-card {
    padding: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .auth-features-grid {
    gap: 1rem;
  }
  
  .auth-feature {
    align-items: center;
  }
  
  .auth-feature-icon {
    width: 32px;
    height: 32px;
    font-size: 1.25rem;
  }
}