@keyframes logoMoveUp {
    0% {
        transform: translate(0,60px) scale(1.5);
        -webkit-transform: translate(0,60px) scale(1.5);
        fill: #FFF;
    }
    20% {
        fill: #FFF;
    }
    60% {
        
    }
    80% {
        transform: translate(0,0) scale(1);
        -webkit-transform: translate(0,0) scale(1);
    }
    100% {
        fill: #3366AA !important;
    }
}
@keyframes logoLetterIn {
    from {
        transform: scale(3);
        -webkit-transform: scale(3);
        opacity: 0;
    }
    to {
        transform: scale(1);
        -webkit-transform: scale(1);
        opacity: 1;
    }
}

@keyframes logoBlip {
    80%,88% {
        top: 0;
    }
    84% {
        top: -8px;
    }
}
@-webkit-keyframes logoMoveUp {
    0% {
        transform: translate(0,60px) scale(1.5);
        -webkit-transform: translate(0,60px) scale(1.5);
        fill: #FFF;
    }
    20% {
        fill: #FFF;
    }
    80% {
        transform: translate(0,0) scale(1);
        -webkit-transform: translate(0,0) scale(1);
    }
    100% {
        fill: #3366AA !important;
    }
}
@-webkit-keyframes logoLetterIn {
    from {
        -webkit-transform: scale(3,3);
        opacity: 0;
    }
    to {
        -webkit-transform: scale(1,1);
        opacity: 1;
    }
}

@-webkit-keyframes logoBlip {
    80%,88% {
        top: 0;
    }
    84% {
        top: -8px;
    }
}

#kuLogo {
   text-align: center;
   margin: 0.5em 0 0;
   position: relative;
   padding-bottom: 65px;
   z-index: -1;
}
#kuLogo svg {
    width: 200px;
    height: 200px;
    animation-name: logoMoveUp;
    animation-duration: 0.5s;
    animation-iteration-count: 1;
    height: 200px;
    -webkit-animation-name: logoMoveUp;
    -webkit-animation-duration: 0.5s;
    -webkit-animation-iteration-count: 1;
    fill: #3366AA !important;
    position: absolute;
    margin-left: -100px;
}
.tiny #kuLogo svg {
    /*width: 140px;
    height: 140px;*/
}
#kuText {
    font-family: Raleway, sans-serif;
    font-size: 5em;
    color: #FFF;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    margin-bottom: 80px;
    white-space: nowrap;
}
.tiny #kuText {
    font-size: 4.15em;
}
#kuText .h {
    color: #66BBFF;
}
#kuText > span {
    animation-name: logoLetterIn, logoBlip;
    animation-duration: 1s, 4s;
    animation-iteration-count: 1, infinite;
    animation-fill-mode: both;

    -webkit-animation-name: logoLetterIn, logoBlip;
    -webkit-animation-duration: 1s, 4s;
    -webkit-animation-iteration-count: 1, infinite;
    -webkit-animation-fill-mode: both;
    position: relative;
    display: inline-block;
}
.k1 { animation-delay: 0.1s; -webkit-animation-delay: 0.1s;}
.k2 { animation-delay: 0.15s; -webkit-animation-delay: 0.15s;}
.k3 { animation-delay: 0.2s; -webkit-animation-delay: 0.2s;}
.k4 { animation-delay: 0.25s; -webkit-animation-delay: 0.25s;}
.k5 { animation-delay: 0.3s; -webkit-animation-delay: 0.3s;}
.k6 { animation-delay: 0.35s; -webkit-animation-delay: 0.35s;}
.k7 { animation-delay: 0.4s; -webkit-animation-delay: 0.4s;}

#greetings {
  font-family: Raleway;
  text-align: center;
  font-size: 1.45em;
  line-height: 1.25em;
  color: #FFF;
  margin: 1.5em 0;
  padding: 0 5px;
}
#greetings span{
  color: #99DDFF;
}
.tiny #greetings {
    font-size: 1.25em;
    margin: 1.5em 0 1.25em;
}

#loginMessage,
#errorMessage {
  margin: 0 auto;
  width: 75%;
  background-color: #DDFFDD;
  border: 1px dotted #33CC33;
  text-align: center;
  font-size: 1.25em;
  padding: 0.5em;
  color: #448844;
  font-family: Arial;
  display: none;
}

body.mobile #loginMessage,
body.mobile #errorMessage {
  font-size: 2em;
  padding: 0.5em;
}

#errorMessage {
    color: #884444;
    background-color: #FFDDDD;
    border: 1px dotted #CC3333;
}

#systemMessage {
  margin: 0 auto 1em;
  width: 70%;
  background-color: #0C4175;
  border: 1px dotted #67D;
  text-align: center;
  font-size: 1em;
  padding: 0.5em;
  color: #DDD;
  font-family: Arial;
}
body.mobile #systemMessage {
  font-size: 0.9em;
  padding: 0.5em;
  width: 90%;
}

#login_form {
  width: 400px;
  margin: 0 auto 20px;
  font-size: 2em;
}
.tiny #login_form {
  width: 90%;
}

#login_form form .option {
  position: relative;
  margin-top: 0.75em;
  border-bottom: 1px solid #BBB;
}
#login_form form .option:first-of-type {
    margin-top: 0em;
}

#login_form .option:before {
  border-bottom: 5px solid #4af;
  box-shadow: 1px 1px 10px #4af;
  bottom: -4px;
  content: " ";
  width: 0%;
  display: block;
  position: absolute;
  z-index: 4;
  transition-duration: 0.25s;
}
#login_form .option.filled:after {
  width: 100%;
}
#login_form .option.filled:before {
  width: 100%;
}

#login_form .option label {
  color: #FFF;
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.75em;
  padding: 0.15em 0;
  vertical-align: middle;
  cursor: text;
  transition-duration: 0.75s;
  top: 0;
  z-index: 3;
}

#login_form form .option input {
  background-color: transparent;
  border: 0 none;
  font-size: 0.75em;
  width: 100%;
  box-sizing: border-box;
  color: #ccddee;
  background-color: #0C3165;
  transition-duration: 0.75s;
  padding: 0.2em 0.5em;
}
#login_form form .option input:focus {
  outline: none;
}

#login_form form button {
  font-family: Raleway, sans-serif;
  font-size: 0.75em;
}
#login_form form button:hover {
  background-color: #FF9F00;
}
.execute {
    position: relative;
}
#login_form button#signup_start,
#login_form button#forgot_start {
    /*position: absolute;
    right: 0;*/
    font-size: 0.6em;
    margin: 0.1em;
    background-color: #225FAA;
}
#login_form button#signup_start:hover,
#login_form button#forgot_start:hover {
    background-color: #3377cc;
}

body.mobile #sign_up {
  font-size: 1.25em;
}
#sign_up {
  text-align: center;
  color: #BBB;
}
#sign_up a{
  color: #66CCFF;
}
#sign_up a:hover{
  color: #EEE922;
}
.login_modal_form {
  background-color: #F9F9F9;
  width: 450px;
  padding: 15px;
  position: absolute;
  z-index: 8;
  left: 50%;
  top: 120px;
  margin-left: -240px;
  display: none;
}
.login_modal_form label {
  display: inline-block;
  width: 200px;
  text-align: right;
  padding: 8px 3px;
  vertical-align: middle;
  color: #444;
  font-size: 1.1em;
}
.login_modal_form input {
  border: 1px solid #999;
}
.login_modal_form .close {
  position: absolute;
  right: 7px;
  top: 5px;
}
.login_modal_form hr {
  margin: 0.5em 0;
}
.login_modal_form h5 {
  color: #AAA;
  font-family: 'Raleway', sans-serif;
  text-align: center;
  font-size: 1.5em;
  margin: 0 0 15px;
  font-weight: normal;
}
.login_modal_form input.error {
  border: 1px solid #FF3311;
}
.login_modal_form ul {
  margin: 0 auto 10px;
  text-align: center;
  color: #EE1111;
}
.login_modal_form li {
  list-style-type: circle;
  padding: 2px 0;
}
.tiny .login_modal_form {
    font-size: 0.9em;
    width: 100%;
    margin-left: -50%;
}
.tiny .login_modal_form label {
    width: 90px;
}
#passlength {
  font-weight: bold;
}