/*Paleta de colores recomendada*/

:root {
  --color-primary: #FFC107;     /* Amarillo Girasol */
  --color-secondary: #000000;   /* Negro elegante */
  --color-accent: #8B9467;      /* Verde oliva (naturaleza) */
  --color-bg: #F5F0E6;          /* Beige cálido */
  --color-text: #333;
}


/* Fuentes */
body {
  font-family: 'Poppins', sans-serif;
}

h1, .display-4 {
  font-family: 'Playfair Display', serif;

  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Fondo principal */
.bg-main {
  background: linear-gradient(135deg, #FFC107 0%, #FFD700 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo estilo girasol */
.logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #FFC107;
  border: 5px solid #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: bold;
  color: #000;
}

/* Input personalizado */
.form-control:focus {
  border-color: #000;
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.25);
}

.btn-dark {
  background-color: #000;
  border-color: #000;
  color: #FFC107;
  font-weight: 500;
  transition: all 0.3s;
}
.btn-dark:hover {
  background-color: #222;
  color: #FFF;
  transform: scale(1.05);
}