@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap');
@import url('https://fonts.googleapis.com/css?family=Nunito+Sans&display=swap');
:root {
  --wht-theme: linear-gradient(to top right, #e4e4e7, #826bf7);
  --wht-text: black;
  --blk-theme: linear-gradient(to top right, #242426, #443786);
  --blk-text: white;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  user-select: none;
}
.clearfix { overflow: hidden; }

body {
  margin: 0;
  padding: 0;
}
/*body {
  height: 100%;
  margin: 0;
  padding: 30px 70px 50px;
  background: var(--blk-theme);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}*/

.divbody {
  position: fixed;
  height: 100%;
  overflow: auto;
  padding: 30px 70px 100px;
  width: calc(100% - 140px);
  background: var(--blk-theme);
}

.head {
  width: 100%;
}
.headspace { padding-bottom: 25px !important; }
.head h2 {
  float: left;
  width: calc(100% - 90px);
  font-family: 'Montserrat';
  font-size: 1.5em;
  color: var(--blk-text);
}
.head svg {
  float: right;
  margin: 0 10px;
  width: 25px;
  height: 25px;
}

.containerApp {
  width: 96%;
  padding: 50px 2% 100px;
}
.app {
  float: left;
  padding: 10px 2%;
  margin: 0 1.5% 20px;
  width: calc(79% / 3);
  height: 230px;
  border-radius: 6px;
  box-shadow: 0 0 30px -10px #00000030;
  transition: 0.125s all linear;
}
.app:hover { box-shadow: 0 0 30px -10px #00000099; }
.logo {
  margin: 24.5px auto 0;
  width: 100px;
  height: 100px;
}
.logo svg, .logo img {
  width: 100%;
  height: 100%;
}
.app h4 {
  margin: 24.5px auto 0;
  width: 90%;
  font-family: 'Montserrat';
  text-align: center;
  font-size: 1.6em;
  color: var(--blk-text);
}

.form {
  padding: 30px 5% 40px;
  margin: 0 auto 100px;
  width: 30%;
  border-radius: 6px;
  box-shadow: 0 0 50px -20px #000000;
}
.noBoxShadow { box-shadow: 0 0 0 0 #000000; }
.form .logo {
  margin: 5px auto 10px;
  width: 70px;
  height: 70px;
}
.form label {
  margin-left: 10px;
  font-family: 'Montserrat';
  text-align: center;
  font-size: 1em;
  color: var(--blk-text);
}
.form p {
  margin: 4px 0 17px 10px;
  font-family: 'Montserrat';
  font-size: 1.2em;
  color: var(--blk-text);
  text-overflow: ellipsis;
  white-space: nowrap;
}
.form input {
  margin: 7.5px auto 15px;
  padding: 5px 3%;
  width: 94%;
  height: 30px;
  font-family: 'Montserrat';
  font-size: 0.9em;
  border: none;
  border-radius: 5px;
  box-shadow: 0 3px 5px -2px #0000000f;
  color: var(--blk-text);
  background-color: #bfbfbf2e;
}
.form input:focus { outline: none; }
.form input[type="password"] {
  font-family: 'Nunito';
  font-size: 1.2em;
  letter-spacing: 1.7px;
}
.form > .ricpassword {
  margin: 5px 3%;
  width: 94%;
}
.form > .ricpassword > input[type="checkbox"] {
  margin: 0;
  float: left;
  width: 15px;
  height: 15px;
}
.form > .ricpassword > label {
  margin: 0 0 0 3px;
  float: left;
  font-family: 'Montserrat';
  font-size: 0.75em;
  color: var(--blk-text);
}
.form p.error {
  display: none;
  padding: 2px 7px 0;
  margin: -15px 0 15px;
  font-family: 'Calibri';
  font-size: 0.7em;
  color: #e64949;
}
.form button {
  margin: 7.5px 0 0;
  width: 45%;
  float: right;
  height: 35px;
  border: none;
  border-radius: 5px;
  color: white;
  box-shadow: 0 3px 3px -1px #00000040;
  background-color: #bfbfbf14;
}
.form button p {
  display: inline;
  margin: 0;
  font-family: 'Montserrat';
  font-size: 1em;
  color: var(--blk-text);
}
.putUp {
  position: relative;
  top: -2.5px;
}
.form button svg {
  position: relative;
  top: 1px;
  display: inline;
  height: 17px;
}
.fullWidth { width: 100% !important; }
.form button:focus { outline: none; }
.form button:active { background-color: #bfbfbf08; }


/*RESPONSIVE*/
@media (max-width: 575.98px) {
  .head {
    padding: 0 8%;
    width: 84%;
  }
  .divbody {
    width: calc(100% - 40px);
    padding: 30px 20px 150px;
  }
  .logo {
    margin: 18px auto 0;
    width: 80%;
    height: 100px;
  }
  .containerApp { padding-top: 35px; }
  .app {
    margin-left: 3%;
    margin-right: 3%;
    width: 90%;
    height: 200px;
    /*box-shadow: 0 0 15px -10px #00000073;*/
  }
  .app:hover { box-shadow: 0 0 15px -10px #00000073; }
  .app h4 {
    margin: 15px 0;
    text-align: center;
    width: 98%;
    font-size: 1.5em;
  }
  .form {
    padding: 30px 7.5% 40px;
    width: 85%;
  }
  .form p { font-size: 0.8em; }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .app { width: 93%; }
  .form {
    padding: 30px 6% 40px;
    width: 88%;
  }
  .form p { font-size: 0.9em; }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .app { width: 43%; }
  .form {
    padding: 30px 5% 40px;
    width: 45%;
  }
  .form p { font-size: 1.1em; }
}
@media (min-width: 992px) and (max-width: 1199.98px) {}
@media (min-width: 1200px) {}
