@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    min-height: 80vh;
    background-image: url('fondo.jpg');
    background-size: cover;
    background-position: center center; /* Centra la imagen */
    background-repeat: no-repeat;
    background-attachment: fixed;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Centra horizontalmente */
}  
  
.text-white .form-label,
.text-white input {
  color: white !important;
}

:root {
    --md-sys-color-primary: #31B700;
    --md-sys-color-secondary: #00263A;
}
  
/* Si necesitas cambiar el color del placeholder también */
.text-white input::placeholder {
  color: rgba(255, 255, 255, 0.7) !important;
}

.card {
    background-color: rgba(255, 255, 255, 0.845);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: none;
}

* {
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.form-section {
  display: none; /* Ocultar todas las secciones por defecto */
}

.form-section.active {
  display: block; /* Mostrar solo la sección activa */
}

.cart-total-badge {
  position: absolute;
  top: -20px;
  right: -10px;
  background-color: #28a745;
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 15px;
}