@import url("https://fonts.googleapis.com/css?family=Montserrat:200,300,400,500,600,700");
* {
  box-sizing: border-box;
}

html{
  background: url('../img/bg-gymcad-login.jpg') no-repeat;
  background-size: cover;
  background-position:fixed;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 90%;
}

a, a:link, a:visited {
  color: #648cec;
  text-decoration: none;
}
a:hover, a:focus, a:link:hover, a:link:focus, a:visited:hover, a:visited:focus {
  text-decoration: underline;
}

body {
  text-align: center;
  font-family: Montserrat, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 25px;
  font-weight: bold;
  
}
/*body:before {
  content: '';
  position: absolute;
  top: calc(50% - 50vh);
  left: calc(50% - 1500px);
  background: rgba(100, 140, 236, 0.48);
  width: 1040px;
  height: 100vh;
  min-height: 640px;
  -webkit-transform: skewX(-15deg);
          transform: skewX(-15deg);
}*/

main {
  padding: 0 30px;
  margin: 0 auto;
  text-align: left;
}
@media screen and (max-width: 419px) {
  main {
    width: 100%;
  }
}
@media screen and (min-width: 420px) {
  main {
    width: 420px;
  }
}
@media screen and (max-height: 709px) {
  main {
    margin-top: 100px;
  }
}
@media screen and (min-height: 710px) {
  main {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
main #logo-gymcad {
  width: auto;
  height: 90px;
  display: block;
  max-width: 100%;
}
main form {
  margin: 50px 0 100px;
}
main form label {
  display: block;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 4px;
  font-weight: bold;
}
main form input[type="text"],
main form input[type="password"] {
  width: 100%;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid #B5BDC9;
  border-radius: 2px;
  padding: 10px 15px;
  margin-bottom: 25px;
  transition: 0.4s border-color;
  /* font styles */
  font-family: Montserrat;
  font-weight: 200;
  font-size: 16px;
  line-height: 25px;
  color: #000;
  font-weight: bold;
}
main form input[type="text"]:hover, main form input[type="text"]:focus,
main form input[type="password"]:hover,
main form input[type="password"]:focus {
  outline: 0;
  border-color: #ffab26;
  color: #000;
  font-weight: bold;
}
main form input[type="submit"] {
  background-color: #648cec;
  border: 0;
  border-radius: 2px;
  padding: 5px 20px 7px;
  margin-top: 25px;
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  color: #FFF;
  transition: 0.4s background-color;
      font-weight: bold;
}
main form input[type="submit"]:hover {
  cursor: pointer;
  background-color: #ffab26;
}
main form input[type="submit"]:focus {
  outline: none;
}
main .copyright {
  text-align: left;
  width: 100%;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 25px;
  color: #FFFFFF;
  letter-spacing: -0.25px;
  font-weight: bold;
}
main .msgerro{
  width: 100%;
  height: auto;
  font-family: Montserrat;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  text-align:center;
  color: #721c24;
background-color: #f8d7da;
border-color: #f5c6cb;
}
.alerta {
    padding: .75rem 1.25rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}
@media screen and (max-height: 709px) {
  main .copyright {
    margin-bottom: 25px;
  }
}