@charset "UTF-8";
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Si tu menú principal tiene la clase .menu, esto lo hará responsivo automáticamente en todas las páginas */
@media screen and (max-width: 1024px) {
  .menu .men {
    width: 250px !important;
  }
  .menu .logo {
    width: 10% !important;
  }
  .menu .g {
    font-size: 1.3em !important;
    left: 12% !important;
  }
  .menu .r {
    font-size: 1.5em !important;
    left: 12% !important;
  }
}
@media screen and (max-width: 768px) {
  .menu {
    position: fixed !important;
    left: -100% !important; /* Escondido por defecto en celular */
    width: 280px !important;
    height: 140vh !important;
    overflow-y: auto !important;
    z-index: 9999 !important;
    transition: 0.4s ease-in-out !important;
  }
  .menu ul {
    top: 10% !important; /* Ajusta la posición del menú en celular */
  }
  .menu.activo {
    left: 0 !important; /* Aparece cuando le dan clic al botón */
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.5);
  }
  .pruev {
    display: block;
  }
  .dashboard-content, .contenedor-formularios {
    width: 100% !important;
    float: none !important;
    padding: 20px 15px !important; /* Menos espacio a las orillas en celular */
  }
  .Cerrar {
    z-index: 10000 !important; /* El botón de menú siempre arriba */
  }
  .Cerrar.activo {
    left: 70% !important; /* Ajusta la posición del botón de menú cuando el menú está activo en celular */
  }
}
.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #CDE5BC;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  overflow: hidden;
}
.login-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../image/hojas.png") repeat;
  animation: moverHojas 20s linear infinite;
  opacity: 0.5;
  z-index: 0;
}
.login-container .regre {
  position: absolute;
  top: 5%;
  left: 10%;
  background: #7AA77A;
  width: 1%;
  height: 4%;
  padding: 0.5rem 1%;
  border-radius: 50%;
  transition: 0.5s ease;
}
.login-container .regre .fle {
  position: absolute;
  top: -97%;
  font-size: 3em;
  left: 20%;
  transition: 0.5s ease;
  color: #F2F2F2;
}
.login-container .regre .regr {
  position: absolute;
  top: 16%;
  font-size: 1.25rem;
  left: 35%;
  opacity: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  transition: 0.5s ease;
  color: #F2F2F2;
}
.login-container .regre:hover {
  width: 10%;
  height: 3%;
  border-radius: 25px;
  transition: 0.5s ease;
}
.login-container .regre:hover .regr {
  top: -20%;
  opacity: 1;
  transition: 0.5s ease;
}
.login-container .regre:hover .fle {
  top: -123%;
  left: 10%;
  transition: 0.5s ease;
}
.login-container .login-box {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: 0.5s ease;
  width: 400px;
}
.login-container .login-box h1 {
  font-size: 2rem;
  color: #4B7F52;
  transition: 0.5s ease;
}
.login-container .login-box .tagline {
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  margin-bottom: 1rem;
  color: #A8C09F;
  transition: opacity 0.3s ease;
  margin-top: 1rem;
}
.login-container .login-box input {
  width: 90%;
  padding: 1rem;
  margin: 0.8rem 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: 0.5s;
}
.login-container .login-box button {
  background-color: transparent;
  color: #2C2C2C;
  padding: 0.75rem;
  margin-top: 1rem;
  border-radius: 25px;
  border: solid 1px #101010;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  cursor: pointer;
  transition: 0.3s;
}
.login-container .login-box button:hover {
  border: solid 1px #7AA77A;
  background-color: #7AA77A;
  transition: 0.5s;
  scale: 1.05;
}
.login-container .login-box .login-help {
  margin-top: 1.5rem;
}
.login-container .login-box .login-help a {
  color: #2C2C2C;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  text-decoration: none;
  font-size: 1em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 0.5rem;
  transition: color 0.3s ease;
}
.login-container .login-box .login-help a:hover {
  color: #7AA77A;
}
.login-container .login-box .login-help a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #4F7F4F;
  transition: width 0.3s ease;
}
.login-container .login-box .login-help a:hover::after {
  width: 100%;
}

@keyframes moverHojas {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1000px 1000px;
  }
}

/*# sourceMappingURL=style.css.map */
