* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  background: -webkit-gradient(linear, left top, right bottom, from(#adcbe3), to(#4b86b4));
  background: linear-gradient(to right bottom, #adcbe3, #4b86b4);
  color: #454749;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: 'Open Sans',
 sans-serif;
  min-height: 100vh;
}

.loginCard {
  background-color: #ffffff;
  border-radius: .3rem;
  -webkit-box-shadow: 0 0.5rem 4rem rgba(0, 0, 0, 0.2), 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.5rem 4rem rgba(0, 0, 0, 0.2), 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
  position: relative;
  width: 100%;
  min-width: 30rem;
  max-width: 50rem;
  overflow: hidden;
}

.loginCard-header {
  background-color: #4b86b4;
  padding: 1.3rem;
  font-size: 2rem;
  color: white;
  margin-bottom: 1rem;
}

.loginCard-body {
  padding: 2rem;
  font-size: 1.4rem;
}

.loginCard-footer {
  border-top: 1px solid #ddd;
  padding: 0 .5rem;
}

.loginCard-footer h4 {
  font-size: 1.6rem;
  text-align: center;
}

.loginCard-footer h4 a:link, .loginCard-footer h4 a:visited {
  text-decoration: none;
  color: #646464;
}

.loginCard-footer h4 a:hover, .loginCard-footer h4 a:focus {
  color: #4b86b4;
}

.form-input {
  display: block;
  position: relative;
  margin-bottom: 1.5rem;
}

.form-input input,
.form-input select {
  border: 1px solid #cacaca;
  border-bottom: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding-top: 1.5rem;
  padding-right: 0.5rem;
  padding-bottom: 1.5rem;
  padding-left: 0.5rem;
  outline-style: none;
  width: 100%;
}

.form-input input ~ .label,
.form-input select ~ .label {
  color: #646464;
  font-size: 1.4rem;
  margin: 0;
  pointer-events: none;
  position: absolute;
  top: 1.5rem;
  left: 0.5rem;
  -webkit-transition: top .2s,font .2s;
  transition: top .2s,font .2s;
  z-index: 1;
}

.form-input input ~ .underline,
.form-input select ~ .underline {
  background-color: #979797;
  height: 1px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.form-input input:hover ~ .underline, .form-input input:focus ~ .underline,
.form-input select:hover ~ .underline, .form-input select:focus ~ .underline {
  background-color: #4b86b4;
}

.form-input input:hover ~ .label, .form-input input:focus ~ .label,
.form-input select:hover ~ .label, .form-input select:focus ~ .label {
  color: #4b86b4;
}

.form-input input:focus ~ .underline,
.form-input select:focus ~ .underline {
  height: 2px;
}

.form-input input:focus ~ .label, .form-input input:valid ~ .label ,
.form-input select:focus ~ .label, .form-input select:valid ~ .label {
  top: -.8rem;
  font-size: 0.91rem;
  background-color: white;
  padding: .2rem .3rem;
}

.form-input input:-webkit-autofill ~ .label ,
.form-input select:-webkit-autofill ~ .label {
  top: 0;
  font-size: 0.91rem;
}

.btn {
  border-radius: .2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  letter-spacing: 1px;
  font-size: 1.5rem;
  padding-top: 1.3rem;
  padding-right: 2rem;
  padding-bottom: 1.3rem;
  padding-left: 2rem;
}

.btn, [role="button"], [type="button"] {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  border: none;
}

.btn-white-color {
  background-color: #ffffff;
  color: white;
}

.btn-white-color:hover, .btn-white-color:focus, .btn-white-color:active {
  background-color: #f2f2f2;
}

.btn-primary {
  background-color: #4b86b4;
  color: white;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: #4479a2;
}

.btn-secondary {
  background-color: #adcbe3;
  color: white;
}

.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active {
  background-color: #9abfdd;
}

.btn-gray-color {
  background-color: #828282;
  color: white;
}

.btn-gray-color:hover, .btn-gray-color:focus, .btn-gray-color:active {
  background-color: #757575;
}

.btn-dark-gray {
  background-color: #646464;
  color: white;
}

.btn-dark-gray:hover, .btn-dark-gray:focus, .btn-dark-gray:active {
  background-color: #575757;
}

.btn-base {
  background-color: #454749;
  color: white;
}

.btn-base:hover, .btn-base:focus, .btn-base:active {
  background-color: #393a3c;
}

.logo_container {
  padding: .8rem;
  text-align: center;
}

.submit-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.submit-container p a {
  -webkit-transition: all .5s;
  transition: all .5s;
}

.submit-container p a:link, .submit-container p a:visited {
  text-decoration: none;
  color: #828282;
  font-size: 1.32rem;
}

.submit-container p a:hover, .submit-container p a:focus {
  color: #4b86b4;
  text-decoration: underline;
}
/*# sourceMappingURL=login.css.map */