body {
  height: 100vh;
  font-family: "Montserrat", sans-serif;
  padding: 0px;
  width: 100%;
  margin: 0px;
  overflow: hidden;
}

.bgContainer {
  background-image: url("../images/fondo-min.png");
  background-size: cover;
  background-position: 0 0;
  background-repeat: no-repeat;
}
.bgContainer .container {
  background: rgba(26, 26, 26, 0.37);
  color: white;
  width: 100%;
  display: flex;
  margin-top: 0px;
}
.bgContainer .container .leftPanel {
  flex: 65%;
  padding: 0vh;
  padding-left: 3vw;
  padding-right: 3vw;
  height: 100vh;
}
.bgContainer .container .leftPanel .logo {
  height: 10vh;
  margin-top: 10vh;
}
.bgContainer .container .leftPanel .logo img {
  height: 10vh;
}
.bgContainer .container .leftPanel .slogan {
  height: 10vh;
  margin-top: 25vh;
  text-align: center;
  font-size: 2vw;
}
.bgContainer .container .leftPanel .slogan .hashtag {
  margin-top: 0.5vh;
  font-size: 150%;
  font-weight: bold;
}
.bgContainer .container .leftPanel .shopnow {
  margin-top: 6vh;
  text-transform: uppercase;
  font-size: 1.5vw;
  text-align: center;
}
.bgContainer .container .leftPanel .shopnow button {
  font-size: 1vw;
  border: 2px solid white;
  padding: 0.8vw;
  background: transparent;
  transition: 0.3s background, 0.3s color;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 2vh;
}
.bgContainer .container .leftPanel .shopnow button:hover {
  background: white;
  color: black;
}
.bgContainer .container .leftPanel .instagram {
  height: 8vh;
  margin-top: 15vh;
  font-size: 1.8vw;
  text-align: center;
  font-weight: bold;
  vertical-align: middle;
  cursor: pointer;
}
.bgContainer .container .leftPanel .instagram img {
  width: 2vw;
  vertical-align: middle;
}
.bgContainer .container .rightPanel {
  background: rgba(3, 36, 66, 0.93);
  flex: 35%;
  height: 100vh;
  padding: 0vh 8vw;
}
.bgContainer .container .rightPanel .prompt {
  margin-top: 7vh;
  text-align: center;
  font-size: min(1.2vw, 2.4vh);
  text-transform: uppercase;
}
.bgContainer .container .rightPanel .monto {
  font-size: 2vw;
  font-weight: bold;
  text-align: center;
  margin-top: 1vh;
  margin-bottom: 1vh;
  line-height: 2.2vw;
}
.bgContainer .container .rightPanel .descuento {
  font-size: 0.8vw;
  line-height: 1.2vw;
  text-transform: uppercase;
  font-weight: normal;
  text-align: center;
}
.bgContainer .container .rightPanel .descuento a {
  color: white;
}
.bgContainer .container .rightPanel .exito {
  margin-top: 18vh;
  text-align: center;
}
.bgContainer .container .rightPanel .exito .exitoTitulo {
  font-size: min(2vw, 3.5vh);
  font-weight: bold;
}
.bgContainer .container .rightPanel .exito .exitoTitulo .exitoLogo {
  margin-bottom: 3vh;
}
.bgContainer .container .rightPanel .exito .exitoTitulo .exitoLogo img {
  width: 50%;
}
.bgContainer .container .rightPanel .exito .exitoContenido {
  margin-top: 2vh;
  font-size: min(1.5vw, 3vh);
}
.bgContainer .container .rightPanel .formulario {
  display: flex;
  flex-direction: column;
}
.bgContainer .container .rightPanel .formulario .error {
  background: white;
  color: rgb(3, 36, 66);
  padding: 3px;
  font-weight: bold;
}
.bgContainer .container .rightPanel .formulario .input {
  flex: 1 1 100%;
  display: flex;
  margin-top: 3vh;
  justify-content: center;
}
.bgContainer .container .rightPanel .formulario .input button {
  padding: 1vh 1.5vh;
  border-radius: 0;
  background: transparent;
  border: 1px solid white;
  color: white;
  cursor: pointer;
  font-weight: bold;
}
.bgContainer .container .rightPanel .formulario .input button:hover {
  background: white;
  color: rgb(3, 36, 66);
}
.bgContainer .container .rightPanel .formulario .input input {
  background: transparent;
  border: 1px solid white;
  border-radius: 0;
  flex: 1 1 100%;
  padding: 1.5vh;
  font-size: min(0.9vw, 1.8vh);
  color: white;
}
.bgContainer .container .rightPanel .formulario .input input::placeholder {
  color: white;
  font-weight: lighter;
  letter-spacing: 1px;
}
.bgContainer .container .rightPanel .leyenda {
  margin-top: 3vh;
  font-size: min(0.7vw, 1.4vh);
}
.bgContainer .container .rightPanel .privacidad {
  margin-top: 2vh;
  font-size: min(0.7vw, 1.4vh);
}

@media (max-width: 1200px) {
  body {
    padding: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
    overflow: auto;
  }
  .bgContainer {
    background-image: url("../images/fondoMobile-min.png");
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: left top;
  }
  .bgContainer .container {
    background: rgba(26, 26, 26, 0.37);
    color: white;
    width: 100%;
    display: flex;
    overflow: hidden;
    flex-direction: column;
  }
  .bgContainer .container .leftPanel {
    padding: 0px;
    font-size: 5vw;
    padding-left: 3vw;
    padding-right: 3vw;
  }
  .bgContainer .container .leftPanel .logo {
    text-align: right;
    margin-top: 3vh;
    margin-right: 2vh;
  }
  .bgContainer .container .leftPanel .logo img {
    display: inline-block;
    height: 6vh;
  }
  .bgContainer .container .leftPanel .slogan {
    font-size: 2vh;
    line-height: 3vh;
    margin-top: 16vh;
    height: 5vh;
  }
  .bgContainer .container .leftPanel .slogan .hashtag {
    font-size: 150%;
    font-weight: bold;
    margin-top: 0.6vh;
    line-height: 1.5vh;
  }
  .bgContainer .container .leftPanel .shopnow {
    margin-top: 2vh;
    text-transform: uppercase;
    font-size: 1.5vh;
    text-align: center;
  }
  .bgContainer .container .leftPanel .shopnow button {
    font-size: 1.4vh;
    border: 2px solid white;
    padding: 0.6vh;
    background: transparent;
    transition: 0.3s background, 0.3s color;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 1.5vh;
  }
  .bgContainer .container .leftPanel .shopnow button:hover {
    background: white;
    color: black;
  }
  .bgContainer .container .leftPanel .instagram {
    font-size: 2vh;
    line-height: 3vh;
    height: 5vh;
    margin-top: 4vh;
  }
  .bgContainer .container .leftPanel .instagram img {
    width: 5vw;
    vertical-align: middle;
  }
  .bgContainer .container .rightPanel {
    padding: 0vh 3vh;
    overflow: hidden;
  }
  .bgContainer .container .rightPanel .prompt {
    margin-top: 4vh;
    font-size: 3.5vw;
    line-height: 5.5vw;
  }
  .bgContainer .container .rightPanel .monto {
    margin-top: 2vh;
    font-size: 5.5vw;
  }
  .bgContainer .container .rightPanel .descuento {
    margin-top: 2vh;
    font-size: 3vw;
    line-height: 5vw;
    text-transform: uppercase;
    font-weight: normal;
    text-align: center;
  }
  .bgContainer .container .rightPanel .exito {
    margin-top: 8vh;
    margin-bottom: 14vh;
    text-align: center;
  }
  .bgContainer .container .rightPanel .exito .exitoTitulo {
    font-size: 3vh;
    font-weight: bold;
  }
  .bgContainer .container .rightPanel .exito .exitoTitulo .exitoLogo {
    margin-bottom: 3vh;
  }
  .bgContainer .container .rightPanel .exito .exitoTitulo .exitoLogo img {
    width: 50%;
  }
  .bgContainer .container .rightPanel .exito .exitoContenido {
    margin-top: 2vh;
    font-size: 2vh;
  }
  .bgContainer .container .rightPanel .exito .exitoContenido a {
    color: white;
    padding: 10px;
  }
  .bgContainer .container .rightPanel .formulario {
    width: 70%;
    margin: 0 auto;
  }
  .bgContainer .container .rightPanel .formulario .error {
    font-size: 2.5vw;
  }
  .bgContainer .container .rightPanel .formulario .input {
    flex: 1 1 50%;
    display: flex;
    margin-top: 2vh;
    justify-content: center;
  }
  .bgContainer .container .rightPanel .formulario .input button {
    padding: 1vh 1.5vh;
    border-radius: 0;
    background: transparent;
    border: 1px solid white;
    color: white;
    cursor: pointer;
    font-weight: bold;
  }
  .bgContainer .container .rightPanel .formulario .input button:hover {
    background: white;
    color: rgb(3, 36, 66);
  }
  .bgContainer .container .rightPanel .formulario .input input {
    background: transparent;
    border: 1px solid white;
    border-radius: 0;
    flex: 1 1 50%;
    padding: 0.7vh 1.5vh;
    font-size: 3vw;
  }
  .bgContainer .container .rightPanel .formulario .input input::placeholder {
    color: white;
  }
  .bgContainer .container .rightPanel .leyenda {
    margin-top: 2vh;
    font-size: 2.5vw;
    text-align: center;
  }
  .bgContainer .container .rightPanel .privacidad {
    margin-top: 2vh;
    font-size: 2.5vw;
    text-align: center;
    margin-bottom: 4vh;
  }
}

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