@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

#toast-container .toast {
  border: none;
  background-color: #00a8ff;
  -webkit-box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  opacity: 0.9;
  -webkit-transition: 0.25s all ease-in-out;
  -o-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
}
#toast-container .toast .toast-message {
  font-weight: normal;
}
#toast-container .toast:hover {
  -webkit-box-shadow: rgba(0, 0, 0, 0.24) 0px 5px 8px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 5px 8px;
  opacity: 1;
}
#toast-container .toast-success {
  background-color: #20bf6b;
}
#toast-container .toast-error {
  background-color: #e84118;
}
#toast-container .toast-warning {
  background-color: #ffa801;
}
.text-discord {
  color: #7289da;
}
.main-wrapper {
  min-height: 90vh;
}
.bee_fly {
  -webkit-animation: bee_fly 5s ease-in-out 0s infinite;
  animation: bee_fly 5s ease-in-out 0s infinite;
}
@-webkit-keyframes bee_fly {
  0% {
    -webkit-transform: translate(20px, 0px) rotate(-5deg);
    transform: translate(20px, 0px) rotate(-5deg);
  }
  50% {
    -webkit-transform: translate(-20px, 0px) rotate(5deg);
    transform: translate(-20px, 0px) rotate(5deg);
  }
  to {
    -webkit-transform: translate(20px, 0px) rotate(-5deg);
    transform: translate(20px, 0px) rotate(-5deg);
  }
}
@keyframes bee_fly {
  0% {
    -webkit-transform: translate(20px, 0px) rotate(-5deg);
    transform: translate(20px, 0px) rotate(-5deg);
  }
  50% {
    -webkit-transform: translate(-20px, 0px) rotate(5deg);
    transform: translate(-20px, 0px) rotate(5deg);
  }
  to {
    -webkit-transform: translate(20px, 0px) rotate(-5deg);
    transform: translate(20px, 0px) rotate(-5deg);
  }
}
.nl2br {
  white-space: pre-line;
}
.loader-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  z-index: 9999;
}
.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 20px;
  color: white;
}
.product-feed-image {
  position: relative;
  overflow: hidden;
}
.product-feed-image.aspect-ratio-1-1 {
  padding-bottom: 100%;
}
.product-feed-image.aspect-ratio-16-9 {
  padding-bottom: 56.25%;
}
.product-feed-image.aspect-ratio-4-5 {
  padding-bottom: 125%;
}
.product-feed-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.code-block {
  font-family: Arial, sans-serif;
  background-color: #222;
  color: #fff;
  padding: 8px;
  border-radius: 4px;
  white-space: pre-wrap;
  font-size: 14px;
  line-height: 1.4;
  border: 1px solid #444;
  overflow-x: auto;
}
/*# sourceMappingURL=main.css.map */

/* Estilos para el login */
.navbar {
  width: 100%;
  height: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: none;
  box-shadow: 0px 0px 10px 0px #c0b2b287;
  z-index: 1;
}

.navbar__logo--img {
  height: 46px;
}

.navbar__ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.navbar__li a {
  color: #333333;
  text-decoration: none;
  cursor: pointer;
}

.navbar__li a::before {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background: #f77f00;
  transition: 0.3s all ease-in-out;
}

.navbar__li a:hover::before {
  width: 100%;
}

.logincontainer {
  width: 100vw;
  height: 100dvh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  background: url("../images/foodlogin.webp");
  background-size: cover;
  position: relative;
  gap: 2rem;
}

.cardlogin__title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
  text-align: center;
  z-index: 2;
}

.logincontainer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/wavelogin.svg");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
  opacity: 0.8;
}

.logincontainer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffffe8;
  opacity: 0.8;
}

@keyframes fadeBottomTop {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cardlogin {
  min-width: 400px;
  min-height: 550px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 500px;
  padding: 2rem 1.5rem;
  box-shadow: 0px 0px 7px 0px #808080c2;
  border-radius: 10px;
  z-index: 2;
  position: relative;
  overflow: hidden;
  animation: fadeBottomTop 0.7s ease-in-out 0s 1 forwards;
}

.cardlogin__logo {
  width: 10rem;
  margin-bottom: 1rem;
}

.cardlogin__btnlogin {
  background: #f77f00;
  padding: 10px;
  color: #fff;
  border: none;
  border-radius: 6px;
  width: 100%;
  margin: 2rem 0rem;
  transition: 0.3s ease-in-out;
}

.cardlogin__btnlogin:hover {
  background: #f25c00;
  cursor: pointer;
}

.containerfield {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  margin-top: 1.5rem;
}

.containerfield__input {
  width: 100%;
  padding: 10px 6px;
  border: none;
  border-bottom: 1px solid #ccc;
  background: none;
  font-size: 16px;
}

.containerfield__input:focus {
  outline: none;
  border-bottom: 2px solid #f77f00;
}

.containerfield__label {
  position: absolute;
  left: 5px;
  top: 10px;
  color: #00000070;
  transition: all 0.2s ease-in-out;
  pointer-events: none;
}

.containerfield__input:focus + .containerfield__label,
.containerfield__input:not(:placeholder-shown) + .containerfield__label {
  left: 5px;
  top: -10px;
  font-size: 14px;
  color: #f77f00;
}

.containerfield__input:placeholder-shown::placeholder,
.containerfield__input:focus::placeholder {
  color: transparent; /* lo vuelve invisible */
}

.containerfield__showpass {
  font-size: 14px;
  color: #8d6e63;
  background: none;
  cursor: pointer;
  border: none;
  margin-left: auto;
  margin-top: 5px;
  font-weight: 500;
  position: relative;
  transition: 0.3s all ease-in-out;
}

.containerfield__showpass:hover {
  color: #503f39;
}

.cardlogin__reset {
  color: #1cc88a;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s all ease-in-out;
}

.cardlogin__reset:hover {
  text-decoration: underline;
  cursor: pointer;
  color: #087c52;
}

.footerlogin {
  width: 100%;
  height: auto;
  text-align: center;
  padding: 10px;
  z-index: 2;
  margin-top: 1rem;
}

.footerlogin__text {
  font-size: 12px;
  margin-bottom: 0;
  text-align: center;
}

.cardlogin__logo {
  transition: all 1s ease; /* animación suave */
}

.cardlogin.animate .cardlogin__logo {
  /* transform: rotate(360deg); */
  margin: 0 auto;
  display: block;
}

.cardlogin.animate .containerfield,
.cardlogin.animate .cardlogin__btnlogin,
.cardlogin.animate .cardlogin__reset {
  display: none; /* oculta inputs, botón y enlace */
}

.cardlogin.animate .cardlogin__title {
  margin-bottom: 0;
  margin-top: 15px;
}

@media (max-height: 500px) {
  .logincontainer {
    height: auto;
  }

  .cardlogin {
    margin-top: 3rem;
  }
}

@media (max-width: 500px) {
  .logincontainer {
    height: auto;
    min-height: 100dvh;
  }

  .cardlogin {
    min-width: fit-content;
    width: 95%;
    box-shadow: none;
  }
}
/* Terminan estilos para el login */
