/* 📝 LOG: components.css - Стили компонентов (CDN-совместимые) */

.card {
  background-color: #1a1a2e;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(157, 78, 221, 0.1);
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #c084fc, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-primary {
  padding: 0.875rem 2.25rem;
  border-radius: 0.75rem;
  font-weight: 600;
  transition: all 0.3s ease;
  color: white;
  background: linear-gradient(135deg, #7c3aed 0%, #9d4edd 50%, #c084fc 100%);
  background-size: 200% 200%;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(157, 78, 221, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(157, 78, 221, 0.45);
}

.btn-primary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(157, 78, 221, 0.5);
}

.btn-secondary {
  border: 1px solid #9d4edd;
  color: #9d4edd;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: color 0.3s, background-color 0.3s;
  background: transparent;
  cursor: pointer;
}

.btn-secondary:hover {
  background-color: rgba(157, 78, 221, 0.1);
}

.gradient-text {
  background: linear-gradient(135deg, #c084fc 0%, #a78bfa 40%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.input-field {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background-color: #1a1a2e;
  border: 1px solid rgba(157, 78, 221, 0.2);
  color: white;
  transition: border-color 0.2s;
}

.input-field::placeholder {
  color: #6b7280;
}

.input-field:focus {
  outline: none;
  border-color: #9d4edd;
  box-shadow: 0 0 0 2px rgba(157, 78, 221, 0.3);
}
