/* CSS for MoonEase App */
@charset "UTF-8";
@import url("./general.css");
@import url("./header.css");
@import url("./captcha.css");
@import url("./footer.css");
/* Grid */
div#app > main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 0;
  min-height: calc(100vh - 6rem);
  padding: 1rem var(--spacing);
}
article.grid {
  max-width: 90%;
  padding: 0;
  overflow: hidden;
}
article div {
  padding: 1rem;
}
.v__password_toggle{
  align-items: center;
  border: 2px solid var(--form-element-border-color);
  display: inline-flex;
  justify-content: center;
  margin: -10px 0 0 5px;
  padding: calc(var(--spacing) / 2) !important;
  width: fit-content !important;
}
.v__password_toggle svg {
  width: 1.1rem;
  height: 1.1rem;
}
.v__title__right {
  margin-bottom: 1rem !important;
}
.v__media__wrap {
  border-radius: 0.5rem;
  overflow: hidden;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  -ms-border-radius: 0.5rem;
  -o-border-radius: 0.5rem;
}
.v__media__wrap video {
  border-radius: 0.5rem;
  height: auto;
  max-width: 100%;
  overflow: hidden;
  width: 100%;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  -ms-border-radius: 0.5rem;
  -o-border-radius: 0.5rem;
}
article div:nth-of-type(2) {
  background-image: url("../images/login/login-tile-1280.jpg");
}
@media (min-width: 576px) {
  div#app > main {
    padding: 1.25rem var(--spacing);
  }
  article div {
    padding: 1.25rem;
  }  
}
.overlay {
  background-color: rgba(0, 0, 0, 0.75);
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
}
.overlay button {
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  margin: auto;
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
.overlay button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  /* transform: translate(-50%, -50%); */
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(4, 137, 145, 1),
    rgba(4, 137, 145, 1)
  );
  border-radius: 50%;
  opacity: 0;
  animation: wavesAnimation 2s infinite; /* Animación continua */
  z-index: -1;
}

@keyframes wavesAnimation {
  0% {
    transform: scale(0);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.5);
    opacity: 0.1;
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
  }
}
@media screen and (width < 992px) {
  div#app > main {    
    margin-top: 1rem !important;
  }
}
@media (max-width: 768px) {
  article div:nth-of-type(2) {
    background-image: url("../images/login/login-tile-640.jpg");
  }
}
@media (max-width: 576px) {
  article {
    max-width: 90%;
    min-width: 90%;
    margin: auto !important;
  }  
  article.grid {
    max-width: 100%;
    width: 100%;
  }
  .overlay button {
    width: 70px;
    height: 70px;
  }
}
@media (min-width: 768px) {
  div#app > main {
    padding: 1.5rem var(--spacing);
  }

  article div {
    padding: 1.5rem;
  }
}
@media (min-width: 992px) {
  div#app > main {
    padding: 1.75rem var(--spacing);
  }

  article div {
    padding: 1.75rem;
  }
}
@media (min-width: 1200px) {
  div#app > main {
    padding: 2rem var(--spacing);
  }

  article div {
    padding: 2rem;
  }
}
/* Hero Image */
article div:nth-of-type(2) {
  /* display: none; */
  background-color: var(--bg-input-scheme);
  background-position: center;
  background-size: cover;
}
@media (min-width: 992px) {
  article.grid > div:nth-of-type(2) {
    display: block;
    background-image: url("../images/login/login-tile-1280.jpg");
  }
}
/* Footer */
div#app > footer {
  padding: 1rem 0;
}
