.wrap {
  position: relative;
  box-sizing: border-box;
  width: 95%;
  max-width: 1080px;
  margin: 0 auto;
  height: 100%;
}
@media screen and (max-width: 1080px) {
  .wrap {
    max-width: 1000px;
  }
}
@media screen and (max-width: 1000px) {
  .wrap {
    max-width: 850px;
  }
}
@media screen and (max-width: 850px) {
  .wrap {
    max-width: 700px;
  }
}
@media screen and (max-width: 700px) {
  .wrap {
    max-width: 650px;
  }
}
@media screen and (max-width: 650px) {
  .wrap {
    max-width: 400px;
  }
}
@media screen and (max-width: 400px) {
  .wrap {
    max-width: 320px;
  }
}
.wrap.full {
  max-width: 100%;
  padding-left: 30px;
  padding-right: 30px;
}
a {
  outline: 0 !important;
}
.transfix {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
}
.clear:after {
  display: block;
  clear: both;
  width: 100%;
  content: "";
}
.row {
  display: flex;
}
.row .vc {
  align-self: center;
}
.row.vc {
  align-items: center;
}
.row.hc {
  justify-content: center;
}
.row.just > * {
  flex-grow: 1;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.text-nowrap {
  white-space: nowrap;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-capitalize {
  text-transform: capitalize;
}
html {
  font-size: 1px;
  line-height: 1.33;
  font-family: Verdana, Geneva, sans-serif;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 1000px) {
  html {
    font-size: .7px;
  }
}
body {
  color: #333;
  font-size: 16rem;
  margin: 0;
  padding: 0;
  background-image: linear-gradient(109.6deg, #dfeaf7 11.2%, #f4f8fc 91.1%);
}
h1 {
  font-size: 3.47368421vw;
  font-weight: normal;
  text-align: center;
}
h1 strong {
  display: block;
}
.btn {
  padding: 10rem 25rem 11rem;
  display: inline-block;
  border-radius: 20px;
  font-size: 14px;
  line-height: 20rem;
  font-weight: bold;
  cursor: pointer;
  background: #dfeaf7;
  border: 1px solid #888899;
  color: #444;
  -webkit-transition: all 200ms;
  -moz-transition: all 200ms;
  -ms-transition: all 200ms;
  -o-transition: all 200ms;
  transition: all 200ms;
}
.btn:hover {
  color: black;
  background: #b6cfed;
}
section.login {
  width: 100vw;
  height: 100vh;
}
section.login .row {
  height: 100%;
}
section.login u {
  display: block;
  margin: 20rem 0;
}
section.login p {
  text-align: center;
}
section.login a {
  color: black;
  text-decoration: none;
  font-weight: 300;
}
section.app {
  height: 100vh;
}
section.app header {
  background: #888899;
  height: 70rem;
}
section.app .controls {
  width: 300px;
  flex-grow: 0;
  height: 100%;
  box-sizing: border-box;
  background: #dfeaf7;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
section.app .controls header span {
  color: white;
  line-height: 70rem;
  display: inline-block;
  padding: 0 20rem;
  font-weight: bold;
}
section.app .controls .form {
  padding: 50rem 20rem 0;
}
section.app .controls .form label {
  display: block;
  margin: 0 0 20rem;
}
section.app .controls .form label span {
  display: block;
  font-size: 13px;
  margin: 0 0 5rem;
  font-weight: 600;
}
section.app .controls .form input,
section.app .controls .form textarea {
  width: 100%;
  padding: 12px 15px;
  box-sizing: border-box;
  border: none;
  border-radius: 20px;
  outline: 0 !important;
  box-shadow: 5px 5px 15px #b7c0cb, -5px -5px 15px #ffffff;
  overflow: hidden;
  resize: none;
}
section.app .controls .form textarea {
  height: auto;
}
section.app .dash {
  background: #FFF;
}
section.app .dash header {
  padding: 0 50rem;
}
section.app .dash header span {
  color: white;
  line-height: 70rem;
  display: inline-block;
  font-weight: bold;
}
section.app .dash .container {
  padding: 50rem;
}
section.app .dash .actions {
  padding: 30rem 0 0;
}
section.app .dash .actions .successful {
  -webkit-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
  -o-transition: all 400ms;
  transition: all 400ms;
  display: inline-block;
  margin: 0 0 0 20rem;
  font-size: 12px;
  color: black;
  opacity: 0;
}
section.app .dash .actions .successful.visible {
  -webkit-transition: all 10ms;
  -moz-transition: all 10ms;
  -ms-transition: all 10ms;
  -o-transition: all 10ms;
  transition: all 10ms;
  opacity: 1;
}
