@charset "UTF-8";
@font-face {
  font-family: "Lobster";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/Lobster/Lobster-Regular.ttf");
}
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/Lato2OFL/Lato-Regular.ttf");
}
body {
  /* Ubicación de la imagen */
  background-image: url(/img/istockphoto2.jpg);
  /* Nos aseguramos que la imagen de fondo este centrada vertical y
  horizontalmente en todo momento */
  background-position: bottom center;
  /* La imagen de fondo no se repite */
  background-repeat: no-repeat;
  /* La imagen de fondo está fija en el viewport, de modo que no se mueva cuando
   la altura del contenido supere la altura de la imagen. */
  background-attachment: fixed;
  /* La imagen de fondo se reescala cuando se cambia el ancho de ventana
   del navegador */
  background-size: cover;
  /* Fijamos un color de fondo para que se muestre mientras se está
  cargando la imagen de fondo o si hay problemas para cargarla  */
  background-color: #464646;
}

h1 {
  font-family: Lato, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-variant: normal;
  font-weight: 700;
  line-height: 26.4px;
}

h3 {
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-variant: normal;
  font-weight: 700;
  line-height: 15.4px;
}

p {
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 20px;
}

blockquote {
  font-family: Lato;
  font-size: 21px;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 30px;
}

pre {
  font-family: Lato;
  font-size: 13px;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 18.5714px;
}

.invalid-feedback {
  font-family: Lato, sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  color: red;
}

.panel-content {
  position: relative;
  margin: auto;
  padding: 0;
  max-width: 400px;
  box-shadow: 0 4px 8px 0 rgba(253, 135, 36, 0.4), 0 6px 20px 0 rgba(0, 0, 0, 0.3);
  background-color: rgba(255, 255, 255, 0.7);
}

.panel-header {
  padding: 1px;
  /* background: rgba(0,0,0,0.1);*/
  border-bottom: 1px solid whitesmoke;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}

.panel-header h3 {
  font-size: 18px;
  font-weight: normal;
  color: black;
  text-align: center;
}

.panel-body {
  padding: 2px 16px;
}

.panel-footer {
  padding: 2px 16px;
  background: rgba(253, 135, 36, 0.7);
}

.panel-footer h3 {
  font-size: 12px;
  font-weight: normal;
}

.panel-close {
  color: #fff;
  float: right;
  font-size: 20px;
  font-weight: bold;
}

.panel-close:hover,
.panel-close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.text-brand-login h5 {
  color: #fd8724;
  margin-bottom: 20px;
  margin-top: 20px;
  text-align: center;
  font-size: 40px;
  padding: 0;
  font-family: "Lobster", sans-serif;
}

.text-brand-login {
  text-align: center;
}

.text-brand-login p {
  text-align: center;
  font-size: 13px;
}

.text-brand-reg {
  font-size: 13px;
}

#section-panel {
  margin-top: 100px;
}

.forget-password a {
  font-size: small;
}

/* sin frame */
.contenedor-inputs {
  padding: 10px 30px;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

input {
  margin-bottom: 15px;
  padding: 15px;
  font-size: 15px;
  border: 0;
  background-color: rgba(255, 255, 255, 0.3);
  outline: none;
  border-bottom: 1px solid darkgrey;
  font-family: Lato, sans-serif;
}

.input-100 {
  width: 100%;
}

.btn-enviar {
  background: #fd8724;
  color: #fff;
  padding: 10px 70px;
  cursor: pointer;
  border: none;
  margin: 20px auto;
  text-transform: uppercase;
  box-shadow: 0 4px 8px 0 rgba(253, 135, 36, 0.4), 0 6px 20px 0 rgba(0, 0, 0, 0.3);
}

.btn-enviar:active {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.forget-password {
  font-family: Lato, sans-serif;
  width: 100%;
  font-size: 12px;
  margin: 7px;
  text-align: center;
  padding-bottom: 10px;
}

.forget-password a {
  color: dimgrey;
  text-decoration: none;
}

.forget-password:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}