@charset "UTF-8";
body {
  background-image: url(../imagenes/manos.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  font-family: "Lato", "Helvetica", san-serif;
  
}

.wrapper {
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 100%;
}

.login {
  width: 400px;
  height: 650px;
  background-color: rgba(255, 255, 255, 0.35);
  margin-left: auto;
  margin-right: auto;
  display: block;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.topbar-login {
  position: relative;
  height: 25px;
  background-color: rgba(255, 255, 255, 0.55);
}

.close {
  float: right;
  margin-right: 5px;
  margin-top: 2px;
}
.close a {
  color: #0b7e61;
}

.login-header {
  text-align: center;
  color: white;
}


.login-header h1 {
  font-weight: 100;
  font-size: 3em;
}
.login-header h3 {
  font-weight: 300;
  margin-bottom: 35px;
}
.login-header hr {
  width: 90%;
  margin-bottom: 25px;
}
.login-header .logo {
  margin-top: 35px;
  font-size: 4em;
  border: 2px solid white;
  border-radius: 50%;
  padding: 15px;
}

.content {
  padding: 0px 15px 15px 15px;
}
.content .input-group:first-child {
  margin-bottom: 16px;
}
.content .input-group:last-child {
  margin-top: 40px;
}
.content .input-group label {
 
  display: block;
  text-align: center;
  width: 100%;
  padding: 6px 0px 6px 0px;
  -webkit-text-overflow: ellipsis;
  -moz-text-overflow: ellipsis;
  text-overflow: ellipsis;
  box-sizing: border-box;
  color: #000000;
}
.content .input-group input {
  display: block;
  margin-top: 12%;
  margin-left: 15%;
  width: 70%;
  height: 37px;
  font-size: 14px;
  font-width: 400;
  padding-left: 15px;
  padding-right: 15px;
  line-height: 37px;
  border: none;
  color: #555555;
  box-sizing: border-box;
  -webkit-appearance: none;
  /* Safari and Chrome */
  -moz-appearance: none;
  /* Firefox */
  appearance: none;
  transition: all 0.3s;
}
.content .input-group input[type=submit] {
  margin-top: 9%;
  background: #14DBA9;
  color: white;
  text-transform: uppercase;
}
.content .input-group input[type=submit]:hover {
  background: #12c497;
}
.content .input-group input[type=submit]:active {
  background: #10ac85;
}
.content .input-group input::-webkit-input-placeholder {
  /* WebKit browsers */
  font-family: inherit;
  font-style: normal;
  font-weight: normal;
  color: #A7A7A7;
}
.content .input-group input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
  color: #A7A7A7;
  opacity: 1;
}
.content .input-group input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
  color: #A7A7A7;
  opacity: 1;
}

.user:before {
  content: "";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  position: relative;
  display: inline-block;
}