html,
body {
    height: 100%;
    padding: 0;
    margin: 0;
}

* {
    box-sizing: border-box;
}

.login-box {
    width: 100%;
}

.login-container {

    width: 100%;
    height: 100%;
    /* background-color: #ccc; */

    display: flex;
    justify-content: center;
    align-items: center;

}

html {
    background: url(../img/bg.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.fullpage {
    margin: 0;
    padding: 0;
}

.loginhead {
    width: 350px;
    text-align: center;
    padding: 5px 0 5px 0;
    margin: 0 auto 10px auto;
    border-bottom: 1px transparent solid;
    color: #555;
    background-color: transparent;
    background: rgb(0 0 0 / 46%);
    /*
	background: rgba(240, 240, 240, 0.2);
	*/
    /* -webkit-border-bottom-right-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-radius-bottomright: 5px;
    -moz-border-radius-bottomleft: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px; */
    border-radius: 5px;
    -moz-animation: fadein 2s;
    -webkit-animation: fadein 2s;
    -o-animation: fadein 2s;
    animation: fadein 2s;
}

.loginhead h1 {
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 2.3rem;
    font-weight: normal;
    line-height: 100%;
    color: #fff;
}


.loginhead i {
    color: darkcyan;
    font-size: 90%;
    text-shadow: 0 1px 0 rgba(0, 82, 121, .8);
}

.loginhead span {
    display: block;
    font-size: 10px;
    color: #EEEEEE;
    margin: 0;
    padding: 0;
}

.loginfooter {
    position: fixed;
    bottom: 0;
    text-align: center;
    padding: 5px;
    margin: 0 auto 0 auto;
    width: 100%;
    color: #fff;
    font-size: 12px;
    background: rgba(0, 0, 0, 0.2);
}

.loginfrm {
    width: 350px;
    margin: 0 auto 0 auto;
    display: block;
    background-color: #fff;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    filter: alpha(opacity=90);
    -moz-opacity: 0.9;
    -khtml-opacity: 0.9;
    opacity: 0.9;
}

.loginfrm form {
    margin: 0;
    padding: 0;
}

.loginerror {
    margin: 0 auto 5px auto;
    text-align: center;
    color: red;
    float: right;
    padding-right: 5px;
    font-size: 12px;
}

.loginmsg {
    margin: 0 auto 5px auto;
    text-align: center;
    float: right;
    padding-right: 5px;
    font-size: 12px;
}

.quote-container{
    text-align:center; width:80%; margin:20px auto 0 auto; text-align:center; font-weight:normal; color:white;
}

.quote-text{
    display: inline-block;
}
.quote-author{
    display: block;
    text-align: right;
}

#outline {
    stroke-dasharray: 2.42777px, 242.77666px;
    stroke-dashoffset: 0;
    -webkit-animation: anim 1.6s linear infinite;
            animation: anim 1.6s linear infinite;
  }
  
  @-webkit-keyframes anim {
    12.5% {
      stroke-dasharray: 33.98873px, 242.77666px;
      stroke-dashoffset: -26.70543px;
    }
    43.75% {
      stroke-dasharray: 84.97183px, 242.77666px;
      stroke-dashoffset: -84.97183px;
    }
    100% {
      stroke-dasharray: 2.42777px, 242.77666px;
      stroke-dashoffset: -240.34889px;
    }
  }
  
  @keyframes anim {
    12.5% {
      stroke-dasharray: 33.98873px, 242.77666px;
      stroke-dashoffset: -26.70543px;
    }
    43.75% {
      stroke-dasharray: 84.97183px, 242.77666px;
      stroke-dashoffset: -84.97183px;
    }
    100% {
      stroke-dasharray: 2.42777px, 242.77666px;
      stroke-dashoffset: -240.34889px;
    }
  }