:root {
  --aka-primary-color: #00224f;
  --aka-primary-color-darken: #000c1c;
  --aka-primary-opposite-color: #ffffff;
  --aka-secondary-color: #e1ce90;
  --aka-secondary-opposite-color: #000000;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-360deg);
  }
}
@-ms-keyframes spin {
  from {
    -ms-transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(-360deg);
  }
}
@-moz-keyframes spin {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(-360deg);
  }
}
@keyframes stretchup15 {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.5);
  }
}
@-webkit-keyframes stretchup15 {
  from {
    -webkit-transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.5);
  }
}
@-ms-keyframes stretchup15 {
  from {
    -ms-transform: scale(1);
  }
  to {
    -ms-transform: scale(1.5);
  }
}
@-moz-keyframes stretchup15 {
  from {
    -moz-transform: scale(1);
  }
  to {
    -moz-transform: scale(1.5);
  }
}
@keyframes stretchup2 {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(2);
  }
}
@-webkit-keyframes stretchup2 {
  from {
    -webkit-transform: scale(1);
  }
  to {
    -webkit-transform: scale(2);
  }
}
@-ms-keyframes stretchup2 {
  from {
    -ms-transform: scale(1);
  }
  to {
    -ms-transform: scale(2);
  }
}
@-moz-keyframes stretchup2 {
  from {
    -moz-transform: scale(1);
  }
  to {
    -moz-transform: scale(2);
  }
}
@keyframes stretchup3 {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(3);
  }
}
@-webkit-keyframes stretchup3 {
  from {
    -webkit-transform: scale(1);
  }
  to {
    -webkit-transform: scale(3);
  }
}
@-ms-keyframes stretchup3 {
  from {
    -ms-transform: scale(1);
  }
  to {
    -ms-transform: scale(3);
  }
}
@-moz-keyframes stretchup3 {
  from {
    -moz-transform: scale(1);
  }
  to {
    -moz-transform: scale(3);
  }
}
@-webkit-keyframes linear-loading-anim-1 {
  0% {
    border-left: 10px solid #f7f7f7;
    background-color: #f7f7f7;
    border-right: 10px solid #00224f;
  }
  33% {
    border-left: 10px solid #00224f;
    background-color: #f7f7f7;
    border-right: 10px solid #f7f7f7;
  }
  66% {
    border-left: 10px solid #f7f7f7;
    background-color: #00224f;
    border-right: 10px solid #f7f7f7;
  }
}
@keyframes linear-loading-anim-1 {
  0% {
    border-left: 10px solid #f7f7f7;
    background-color: #f7f7f7;
    border-right: 10px solid #00224f;
  }
  33% {
    border-left: 10px solid #00224f;
    background-color: #f7f7f7;
    border-right: 10px solid #f7f7f7;
  }
  66% {
    border-left: 10px solid #f7f7f7;
    background-color: #00224f;
    border-right: 10px solid #f7f7f7;
  }
}
#wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 5%;
  font-family: 'Source Sans Pro', sans-serif;
}
#wrapper .school-logo {
  text-align: center;
  margin: 15px 0;
}
#wrapper .login-form {
  max-width: 500px;
  margin: 0 auto;
}
#wrapper .login-form .login-description {
  text-align: justify;
  margin-left: 0;
}
#wrapper .login-form h3 {
  font-weight: 600;
  border-radius: 5px 5px 0 0;
  background: #e1ce90;
  color: #fff;
  padding: 8px 20px;
  margin: 0;
  text-align: center;
}
#wrapper .login-form .login-inputs {
  border-radius: 0 0 5px 5px;
  background: #EFEFEF;
  padding: 40px;
  overflow: hidden;
}
#wrapper .login-form input.text-input {
  display: block;
  width: 89%;
  border-radius: 5px;
  border: 1px solid #ccc;
  margin-bottom: 10px;
  font-size: 14px;
  padding: 10px 20px;
  font-style: italic;
}
#wrapper .login-form .login-error {
  color: #D9121D;
  margin-left: 6px;
}
#wrapper .login-form input.submit-input {
  color: #fff;
  font-size: 16px;
  border-radius: 5px;
  background: #00224f;
  border: 0;
  padding: 8px 40px;
  cursor: pointer;
  float: right;
}
.tooltip {
  background: black;
  color: #ffffff;
  padding: 10px;
  border-radius: 10px;
  max-width: 480px;
}
.tooltip::after {
  content: '';
  position: absolute;
  border-style: solid;
  display: block;
  width: 0;
  bottom: -10px;
  left: 40px;
  border-color: black transparent;
  border-width: 10px 10px 0;
}
