@import url("fonts.css");
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Futura-Bold", sans-serif;
}

p,
label,
span,
a {
  font-family: "Futura-Medium", sans-serif;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.custom_login {
  background-color: #fcd109 !important;
}

.contenedor {
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
}
.contenedor .logo_g {
  width: 50%;
  height: 100%;
  display: flex;
  padding: 0.5rem;
  background-position: 0 bottom;
  background-image: url(../img/statics/group.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.contenedor .logo_g img {
  display: none;
}
.contenedor .custom {
  width: 50%;
  padding: 3rem 1rem;
  display: flex;
  justify-content: center;
  height: 100%;
  align-items: center;
}
.contenedor .custom .conte {
  max-width: 680px;
  width: 100%;
  position: relative;
}
.contenedor .custom .conte .logo_head {
  width: 100%;
  margin-bottom: 2rem;
  text-align: center;
}
.contenedor .custom .conte .logo_head img {
  width: 100%;
  max-width: 480px;
  height: auto;
}
.contenedor .custom .conte .cta_imgs {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
.contenedor .custom .conte .cta_imgs .glass-btn {
  position: relative;
  padding: 1rem;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(0px);
  background: rgba(255, 255, 255, 0.01);
}
.contenedor .custom .conte .cta_imgs .glass-btn img {
  width: 256px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}
.contenedor .custom .conte .cta_imgs .glass-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2), inset 0 0 20px rgba(255, 255, 255, 0.2);
  transform: translateY(-6px);
}
.contenedor .custom .conte .cta_imgs .glass-btn:hover img {
  transform: scale(1.05);
}
.contenedor .custom .conte .cta_imgs .glass-btn:hover::before {
  opacity: 1;
}
@keyframes liquidMove {
  0% {
    transform: translateX(-20%) translateY(-20%) rotate(25deg);
  }
  50% {
    transform: translateX(20%) translateY(20%) rotate(25deg);
  }
  100% {
    transform: translateX(-20%) translateY(-20%) rotate(25deg);
  }
}
.contenedor .custom .conte .text_footer {
  width: 100%;
  text-align: center;
  margin-bottom: 4rem;
}
.contenedor .custom .conte .text_footer h1 {
  margin-bottom: 0.2rem;
  font-size: 45px;
}
.contenedor .custom .conte .text_footer p {
  font-size: 2rem;
  word-spacing: 10px;
  font-weight: normal;
  color: gray;
}

.concha {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  text-align: center;
  z-index: 1;
}

@media (max-width: 1190px) {
  .contenedor .custom .conte .cta_imgs {
    flex-direction: column-reverse;
  }
}
@media (max-width: 1100px) {
  .contenedor {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .contenedor .logo_g {
    padding: 2rem 1.5rem;
    width: 100%;
    height: initial;
    order: 1;
    justify-content: center;
    background-image: none;
  }
  .contenedor .logo_g img {
    display: block;
    width: 100%;
  }
  .contenedor .custom {
    order: 2;
    padding: 2rem 1.5rem;
    width: 100%;
  }
  .contenedor .custom .conte .cta_imgs {
    gap: 0;
    flex-direction: initial;
    order: unset;
  }
  .contenedor .custom .conte .text_footer {
    text-align: center;
  }
}
@media (max-width: 640px) {
  .contenedor {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .contenedor .logo_g {
    padding: 2rem 1.5rem;
    width: 100%;
    order: 1;
    justify-content: center;
  }
  .contenedor .custom {
    order: 2;
    padding: 2rem 0.5rem;
    width: 100%;
  }
  .contenedor .custom .conte .cta_imgs {
    gap: 0;
    flex-direction: column-reverse;
    order: unset;
  }
  .contenedor .custom .conte .text_footer {
    text-align: center;
  }
}/*# sourceMappingURL=custom.css.map */