/* Login Page Styles */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
  padding: 20px;
}

.login-container {
  display: flex;
  max-width: 1000px;
  width: 100%;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

/* Left Side - Branding */
.login-branding {
  flex: 1;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.brand-content {
  max-width: 300px;
}

.brand-logo {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.brand-tagline {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.brand-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.feature-icon {
  width: 24px;
  height: 24px;
  background: #4ade80;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #1a1a2e;
  flex-shrink: 0;
}

/* Right Side - Form */
.login-form-container {
  flex: 1;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-form-content {
  width: 100%;
  max-width: 360px;
}

.login-title {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 2rem;
  font-weight: 700 !important;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.login-subtitle {
  color: #64748b;
  margin-bottom: 30px;
}

/* Auth0 Button */
.btn-auth0 {
  width: 100%;
  padding: 14px 20px;
  background: #1a1a2e;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-auth0:hover {
  background: #2d2d44;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(26, 26, 46, 0.2);
}

.auth-icon {
  flex-shrink: 0;
}

/* Divider Text */
.divider-text {
  text-align: center;
  color: #9CA3AF;
  font-size: 0.875rem;
  margin: 20px 0;
}

/* Google Button */
.btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px 20px;
  background: #FFFFFF;
  color: #374151;
  border: 2px solid #E5E7EB;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-google:hover {
  background: #F9FAFB;
  border-color: #D1D5DB;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Signup Prompt */
.signup-prompt {
  text-align: center;
  margin-top: 25px;
  color: #64748b;
  font-size: 0.875rem;
}

.signup-link {
  color: #1a1a2e;
  font-weight: 600;
  text-decoration: none;
  margin-left: 4px;
}

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

/* Responsive */
@media (max-width: 768px) {
  .login-container {
    flex-direction: column;
  }

  .login-branding {
    padding: 40px;
  }

  .login-form-container {
    padding: 40px;
  }

  .brand-logo {
    font-size: 2rem;
  }

  .login-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .login-page {
    padding: 10px;
  }

  .login-branding {
    padding: 30px 20px;
  }

  .login-form-container {
    padding: 30px 20px;
  }

  .brand-logo {
    font-size: 1.75rem;
  }

  .brand-tagline {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .feature-item {
    font-size: 0.875rem;
  }
}
