:root {
  --width-page: 100vw;
  --height-page: 100vh;
  --theme-fondo: rgba(0, 0, 0, 0.4);
  --theme-component: rgba(110, 160, 220, 0.5);
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 62.5%;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  background-color: var(--theme-fondo);
}

.container {
  width: var(--width-page);
  height: var(--height-page);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.login {
  background-color: var(--theme-component);
  width: 370px;
  height: 400px;
  border: 1px solid rgba(113, 169, 221, 0.9);
  border-radius: 20px;
  -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
          box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  display: block;
}

.login-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.login-header img {
  width: 30%;
  padding: 5px;
  border-radius: 50%;
}

.login-container {
  width: 60%;
  margin: auto;
  display: -ms-grid;
  display: grid;
}

.login-container-type {
  height: 65px;
}

.login-container-type #login-email,
.login-container-type #login-pwd {
  padding: 5px;
  font-weight: bold;
}

.login-container-type-input {
  display: inline-block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.7);
}

.login-container-type-input input[type=email],
.login-container-type-input input[type=password] {
  padding-left: 5px;
  outline: none;
  border: 0;
  background-color: var(--theme-component);
}

.login-container input[type=submit] {
  cursor: pointer;
  font-size: 2rem;
  padding: 5px;
  margin: 5px;
  margin-top: 15px;
  outline: none;
  border: 1px;
  border-radius: 20px;
  background-color: #6281a5;
}

@media (max-width: 414px) {
  .login-container {
    width: 85%;
  }
}

.login-footer {
  padding: 5px;
  margin: 10px;
  display: -ms-grid;
  display: grid;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  font-weight: bold;
  font-size: 1.2rem;
}

.login-footer-recordar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.login-footer-recordar input[type=checkbox] {
  cursor: pointer;
  width: 18px;
  height: 18px;
}

.login-footer-recordar-title {
  margin-left: 5px;
}

.login-footer a {
  text-decoration: none;
  color: black;
  border-bottom: 1px solid rgba(0, 0, 0, 0.7);
}

.login-footer-registrar {
  margin-top: 5px;
  margin-bottom: 5px;
}

@media (max-width: 414px) {
  .login {
    width: calc(var(--width-page) * 0.9);
  }
}

.register {
  background-color: var(--theme-component);
  width: 500px;
}

.register-header {
  text-align: center;
  border-bottom: 1px solid #eee;
  margin: 20px;
}

.register-container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.register-container input[type=email],
.register-container input[type=password] {
  outline: none;
  padding: 10px;
  display: block;
  width: 300px;
  border-radius: 3px;
  border: 1px solid #eee;
  margin: 20px auto;
}

.register-container input[type="submit"] {
  padding: 10px;
  display: block;
  color: #fff;
  background: #0098CD;
  width: 320px;
  margin: 20px auto;
  margin-top: 0;
  border: 0;
  border-radius: 3px;
  cursor: pointer;
}

.register-container input[type="submit"]:hover {
  background-color: #00b8eb;
}

.pageErr {
  width: var(--width-page);
  height: var(--height-page);
  margin-top: 100px;
}

.pageErr p[class^=errPage] {
  text-align: center;
}

.pageErr .errPage-title {
  font-size: 5rem;
  font-weight: bold;
}

.pageErr .errPage-description {
  font-size: 3rem;
  font-weight: bold;
}

.pageErr .errPage-type {
  font-size: 1.5rem;
  font-weight: bold;
}
/*# sourceMappingURL=main.css.map */