/* Open Sans 300 */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 300;
  src: url(../fuentes/OpenSans-300.ttf);
}
/* Open Sans 400 */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url(../fuentes/OpenSans-400.ttf);
}
/* Open Sans 600 */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 600;
  src: url(../fuentes/OpenSans-600.ttf);
}
/* Open Sans 700 */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: url(../fuentes/OpenSans-700.ttf);
}
/* Open Sans 800 */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: bolder;
  src: url(../fuentes/OpenSans-800.ttf);
}
* {
  font-family: "Open Sans" !important;
}

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  background-color: #f1f1f1;
  font-size: 15px !important;
}

.representacion {
  font-size: 0.8rem;
  margin-right: 6px;
}

/* Barra de scroll personalizada */
.scroll::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.scroll::-webkit-scrollbar-track {
  background: #bebebe;
}

.scroll::-webkit-scrollbar-thumb {
  background-color: #373845;
}

input:focus {
  outline: none;
}

/* Mensajes de validacion para los campos */
.contMessage {
  background-color: rgba(255, 0, 0, 0.6);
  margin: 0 0 5px 0;
  border-radius: 5px;
  position: relative;
}

.contMessage ul {
  padding: 10px;
  margin-left: 20px;
}

.agitacion {
  animation: agitacion 0.5s linear infinite;
}

@keyframes agitacion {
  0% {
    left: 0px;
  }
  10% {
    left: 10px;
  }
  20% {
    left: 0px;
  }
  30% {
    left: 10px;
  }
  40% {
    left: 0px;
  }
  50% {
    left: 10px;
  }
  60% {
    left: 0px;
  }
  70% {
    left: 10px;
  }
  80% {
    left: 0px;
  }
  90% {
    left: 10px;
  }
  100% {
    left: 0px;
  }
}
header {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 86px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
}
header div.contenedor-logos {
  background: white;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header div.contenedor-logos .logos {
  display: flex;
  height: 55px;
  align-items: center;
  margin-left: 20px;
}
header div.contenedor-logos img {
  height: 100%;
}
header div.contenedor-logos div.logo-quik {
  border-right: 2px solid rgba(31, 87, 150, 0.58);
  height: 40px;
}
header div.contenedor-logos div.logo-v2m {
  height: 45px;
  position: relative;
  top: -2px;
}
header div.contenedor-logos div.logo-v2m, header div.contenedor-logos div.logo-quik {
  padding: 0 30px;
}
header div.contenedor-logos h2 {
  font-weight: bold;
  color: #256bbc;
}
header nav {
  display: inline-block;
  height: 100%;
}
header nav a {
  display: inline-block;
  line-height: 86px;
  padding: 0 30px;
  font-weight: bold;
  text-decoration: none;
  color: #0535a0;
  font-size: 1rem;
  margin-right: 30px;
  transition-duration: 0.3s;
  position: relative;
  z-index: 1;
}
header nav a:hover {
  background: rgba(90, 100, 123, 0.21);
}

main {
  display: flex !important;
  height: calc(100vh - 86px);
}

main .cont-fondo {
  display: inline-block;
  position: relative;
  width: 65%;
  overflow: hidden;
}

main .cont-fondo-interno {
  position: absolute;
  top: 0;
  left: -90px;
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.83);
  background-repeat: no-repeat;
  background-position: center;
  /*background-size: cover;*/
}

main .cont-fondo-interno-animation {
  animation: zoomIn 6s linear 0.5s infinite normal none running;
}

main .cont-fondo-1 {
  background-image: url("../img/fondo4.png");
}

main .cont-form {
  width: 35%;
  min-width: 300px;
  background-color: #2c495f;
  display: flex;
  justify-content: center;
  align-content: center;
  position: relative;
  min-height: 300px;
}

main .cont-form:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -90px;
  display: inline-block;
  border-top: calc(100vh - 86px) solid transparent;
  border-right: 90px solid #2c495f;
  border-bottom-width: 0;
  border-left-width: 0;
  z-index: 2;
}
main .cont-form:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -180px;
  display: inline-block;
  border-top: calc(100vh - 186px) solid transparent;
  border-right: 180px solid rgba(105, 105, 105, 0.73);
  border-bottom-width: 0;
  border-left-width: 0;
  z-index: 1;
}
main .cont-form form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  max-width: 500px;
  padding: 30px 50px;
  color: #fff;
}
main .cont-form form input.text {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50px;
  border: none;
  padding: 10px 15px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  display: inline;
  width: 100%;
  margin-bottom: 10px;
  transition-duration: 0.3s;
  transition-property: background, transform;
  font-weight: bolder;
}
main .cont-form form input.text:hover {
  background-color: rgba(255, 255, 255, 0.52);
}
main .cont-form form input.text:focus {
  background-color: rgba(255, 255, 255, 0.8);
  transform: translate(5px);
}
main .cont-form form h1 {
  margin-left: 7px;
}
main .cont-form form label {
  font-size: 0.9rem;
  padding-left: 7px;
}
main .cont-form form .boton {
  border: none;
  display: inline-block;
  width: 100%;
  padding: 11px;
  font-size: 0.8rem;
  font-weight: bold;
  color: #FFF;
  letter-spacing: 1px;
  margin-top: 10px;
  background-color: #1f71ef;
  border-radius: 50px;
  cursor: pointer;
  transition-duration: 0.3s;
  transition-property: background, box-shadow;
  text-transform: uppercase;
}
main .cont-form form .boton:focus {
  box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.54);
  outline: none;
}
main .cont-form form .boton:hover, main .cont-form form .boton:focus {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.67);
  background-color: #1c934a;
}
main .cont-form form hr {
  width: 50px;
  margin: 18px auto;
  opacity: 0.6;
}
main .cont-form form p {
  font-size: 0.8rem;
  width: 90%;
  text-align: center;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 5px;
}
main .cont-form form a {
  color: #040730;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: bold;
}
main .cont-form form a:hover {
  text-decoration: underline;
}

footer {
  position: fixed;
  bottom: 0;
  right: 0;
  width: auto;
  background-color: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(0, 0, 0, 0.14);
}

footer p {
  text-align: right;
  font-weight: bold;
  padding: 2px 15px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.49);
}

footer p a {
  color: #cdcdcd;
  margin-left: 3px;
  text-decoration: none;
}

@keyframes zoomIn {
  0% {
    transform: scale(1); 
  }
  100% {
    transform: scale(1.05);
  }
}

@media screen and (max-width: 500px){

  .cont-fondo {
    display: none !important;
  }

  .cont-form {
    width: 100% !important;
  }

  .contenedor-logos .logo-quik, .contenedor-logos .logo-v2m {
    padding: 0 12px !important;
  }

  .contenedor-logos nav a{
    padding: 0 !important;
  }
  
  .contenedor-logos h2 {
    display: none !important;
  }
}