body {
  background-color: #FFF8F0;
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #5C4033;
  margin: 0;
  padding: 0;
}

.container {
    display: grid;
    justify-items: center;
    padding: 18px 40px;
    background: white;
    color: #5C4033;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 1px;
    margin-top: 20px;
    box-shadow: 0 12px 32px rgba(92, 64, 51, 0.12);
}      

        .container input[type="text"],
        .container input[type="password"] {
            max-width: 500px;
            padding: 0.6rem;
            border: 1px solid #C084FC;
            border-radius: 8px;
            font-size: 1rem;
            margin-top: 0.3rem;
            background-color: #FFF3B0;
        }

        .container input[type="text"]:focus,
        .container input[type="password"]:focus {
            border: 1px solid #667eea;
        }

        .container input[type="checkbox"] {
            margin-top: 15px;
        }

    /* Ocultar confirmar contraseña */
    #inpconfirmar,
    label[for="inpconfirmar"] {
        display: none;
}

label {
  margin-top: 1rem;
  font-weight: bold;
  color: #8A7E72;
}

button {
  margin-top: 2rem;
  padding: 0.8rem;
  background-color: #A3D9A5;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #5C4033;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #8ccf8f;
}

@media (max-width: 600px) {
  .container {
    margin: 1rem;
    padding: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  button {
    width: 100%;
  }
}
/* Footer */
/* Footer */
.footer-banaco {
  background-color: #FFF3B0;
  color: #5C4033;
  font-family: 'Segoe UI', sans-serif;
  padding: 2rem 1rem 1rem;
  margin-top: 3rem;
  border-top: 3px dashed #C084FC;
}

.footer-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 2rem 1rem;
  gap: 1rem;
  font-family: 'Lato', sans-serif;


}
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.logo-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-footer img {
  width: 150px;
  height: auto;
  border-radius: 50%;
  border: 2px solid #F7A4A4;
  background-color: #fff;
}

.logo-footer p {
  font-weight: bold;
  margin: 0;
  font-size: 1.1rem;
  color: #5C4033;
}

.logo-footer span {
  font-weight: normal;
  font-size: 0.9rem;
  display: block;
  color: #8A7E72;
}

.footer-links, .footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a, .footer-social a{
  text-decoration: none;
  color: #5C4033;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #C084FC;
}

.footer-social img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  font-size: 0.9rem;
  color: #8A7E72;
}

/* Estilo para el contador del carrito */
.contador-carrito {
  background-color: #C084FC; 
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 50%;
  margin-left: 6px;
  display: inline-block;
  min-width: 20px;
  text-align: center;
}
/* Ocultar campo confirmar contraseña por defecto */
#inpconfirmar,
label[for="inpconfirmar"] {
    display: none;
}
