@charset "UTF-8";
/* Fuente Poppins y Roboto */
@import url("https://fonts.googleapis.com/css?family=Poppins|Roboto");
/* Tamaño de cajas excluyente */
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body, input, select, textarea, button {
  font-family: "Poppins";
}

body {
  background-color: #f1f1f1;
  font-size: 16px;
}

.representacion {
  font-size: 0.8rem;
  margin-right: 6px;
}

/* Barra de scroll personalizada */
.scroll::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.scroll-light::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

.scroll::-webkit-scrollbar-track,
.scroll-light::-webkit-scrollbar-track {
  background: #bebebe;
}

.scroll::-webkit-scrollbar-thumb {
  background-color: #373845;
}

.scroll-light::-webkit-scrollbar-thumb {
  background-color: #888888;
}

input:focus, select:focus {
  outline: none;
}

.mensaje {
  background-color: #bd4343;
  padding: 10px;
  margin: 15px 0 15px 0;
  border-radius: 5px;
  display: flex;
  align-content: space-around;
}
.mensaje p {
  font-size: 0.9rem;
  font-weight: bold;
  height: 100%;
}
.mensaje span {
  padding: 0 6px;
  font-size: 1rem;
  transform: scale(1.5);
  transition-duration: 0.3s;
  cursor: pointer;
}
.mensaje span:hover {
  color: #000;
}

.oculto {
  display: none;
}

.mensaje-transicion {
  position: relative;
  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;
  }
}
body {
  background-color: #DDD;
}

header {
  display: inline-block;
  width: 100%;
  height: 90px;
}
header div.contenedor-logos {
  background: white;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.7);
  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 {
  height: 50px;
}
header div.contenedor-logos div.logo-sigetinput {
  height: 50px;
  border-left: 2px solid #bbb;
  padding-left: 20px;
}
header div.contenedor-logos div.logo-sigetinput h2 {
  font-size: 1.7rem;
  font-weight: bolder;
  display: inline-block;
  color: #797b7b;
  line-height: 40px;
  position: relative;
  top: 6px;
  padding-left: 5px;
}
header div.contenedor-logos div.logo-siget, header div.contenedor-logos div.logo-quik {
  padding: 0 30px;
}
header nav {
  display: inline-block;
  height: 100%;
}
header nav a {
  display: inline-block;
  line-height: 90px;
  padding: 0 30px;
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: none;
  color: #3645b4;
  margin-right: 30px;
  transition-duration: 0.3s;
  position: relative;
  z-index: 1;
}
header nav a:hover {
  background: rgba(214, 214, 214, 0.22);
}

main {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: calc(100vh - 90px);
}
main article.contenedor-fondo-2 {
  width: 60%;
  max-width: 700px;
  padding: 0 60px;
}
main article.contenedor-fondo-2 img {
  width: 100%;
  height: auto;
}
main article.contenedor-form {
  display: inline-block;
  width: 40%;
  min-width: 280px;
  max-width: 450px;
  margin: 30px 20px 20px 0;
  border-radius: 7px;
  background: #4872b3;
  color: #fff;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}
main article.contenedor-form form {
  width: 100%;
  padding: 30px 50px;
  margin: 30px 0;
}
main article.contenedor-form form input.text, main article.contenedor-form form select.text {
  background-color: rgba(255, 255, 255, 0.91);
  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;
}
main article.contenedor-form form input.text:hover, main article.contenedor-form form select.text:hover {
  background-color: rgba(255, 255, 255, 0.52);
}
main article.contenedor-form form input.text:focus, main article.contenedor-form form select.text:focus {
  background-color: rgba(255, 255, 255, 0.8);
  transform: translate(5px);
}
main article.contenedor-form form label {
  line-height: 40px;
  font-size: 0.9rem;
  padding-left: 7px;
}
main article.contenedor-form form input.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: #173b75;
  border-radius: 50px;
  cursor: pointer;
  transition-duration: 0.3s;
  transition-property: background, box-shadow;
}
main article.contenedor-form form input.boton:focus {
  box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.54);
}
main article.contenedor-form form input.boton:hover, main article.contenedor-form form input.boton:focus {
  background: rgba(40, 42, 38, 0.95);
}
main article.contenedor-form form hr {
  width: 50px;
  margin: 18px auto;
  opacity: 0.6;
}
main article.contenedor-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 article.contenedor-form form a {
  color: #040730;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: bold;
}
main article.contenedor-form form a:hover {
  text-decoration: underline;
}

/*# sourceMappingURL=index.css.map */
