.busyIndicatorImg {
    top: 24px;
    left: 53px;
    width: 43px;
    height: 11px;
    position: absolute;
    z-index: 99999;
}

#overlay {
    width: 100%;
    height: 100%;
    background-color: #0e141a;
    background-size: cover;
    z-index: 99998;
    display: block;
    position: absolute;
}

.overlay_logo {
    display: block;
    margin: auto;
    width: 384px;
    height: 104px;
}

.overlay_content {
    left: 50%;
    max-width: 768px;
    overflow: auto;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
}

.overlay_text {
    color: white;
    margin: 30px 3%;
    text-align: center;
    text-shadow: 1px 1px #000000;
    width: 94%;
    font-family: Arial;
}

.overlay_error_message {
    color: white;
    margin: 30px 3%;
    text-align: center;
    text-shadow: 1px 1px #000000;
    width: 94%;
    font-family: Arial;
}


#content {
    font-family: Arial;
    text-align: center;
    color: white;
    margin-top: 100px;
}

body {
    background-color: #0e141a;
}

#content .logo {
    background-image: url(logo.png);
    background-size: contain;
    width: 100%;
    height: 104px;
    background-repeat: no-repeat;
    background-position: center;
}

#content .input-container {
    margin-top: 30px;
    font-weight: lighter;
}

#content h1 {
    font-weight: 400;
    font-size: 1em;
}

#content #description {
    font-size: 1.8em;
}

#portal_body.account-management #input_fields {
    width: 70%;
    margin-left: 15%;
    margin-right: 15%;
    margin-top: 50px;
}

#portal_body.account-management #resetButton.loginButton {
    color: #72d75e;
    cursor: pointer;
    font-size: 1.2em;
    border: none;
    background-color: transparent;
    padding: 5px 15px;
    margin-top: 30px;
}


#portal_body.account-management #loginButton.loginButton {
    display: none !important;
}

    /* -------------------------------- INPUT BOXES ---------------------------------- */
#portal_body.account-management .group 			  {
    position:relative;
    margin-bottom:25px;
}
#portal_body.account-management input[type=text],
#portal_body.account-management input[type=password]{
    font-size: 16px;
    padding: 5px 0px 5px 0px;
    display: block;
    margin: 5px 0px 5px 0px;
    width: 100%;
    border: none;
    background: none;
    color: #72D75E;
    border-bottom: 1px solid #858586;
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
}
#portal_body.account-management input[type=text]:focus,
#portal_body.account-management input[type=password]:focus {
    outline:none;
}

#portal_body.account-management label.inputLabel {
    color:#ebebeb;
    font-size:16px;
    font-weight:normal;
    position:absolute;
    pointer-events:none;
    left:5px;
    top:5px;
    transition:0.2s ease all;
    -moz-transition:0.2s ease all;
    -webkit-transition:0.2s ease all;
}

/* active state */
#portal_body.account-management input:focus[type=text] ~ label.inputLabel,
#portal_body.account-management input:valid[type=text] ~ label.inputLabel,
#portal_body.account-management input:focus[type=password] ~ label.inputLabel,
#portal_body.account-management input:valid[type=password] ~ label.inputLabel {
    top:-20px;
    font-size:12px;
    color:#72D75E;
}


#portal_body.account-management div.errorText{
    color:#d1384c;
    font-size: 14px;
    white-space: nowrap;
}

#portal_body.account-management .bar 	{
    position:relative;
    display:block;
    width:100%; }

#portal_body.account-management .bar:before, .bar:after 	{
    content:'';
    height:3px;
    width:0;
    bottom:2px;
    position:absolute;
    background:#72D75E;
    transition:0.2s ease all;
    -moz-transition:0.2s ease all;
    -webkit-transition:0.2s ease all;
}
#portal_body.account-management .bar:before {
    left:50%;
}
#portal_body.account-management .bar:after {
    right:50%;
}

/* active state */
#portal_body.account-management input:focus[type=text] ~ .bar:before,
#portal_body.account-management input:focus[type=text] ~ .bar:after,
#portal_body.account-management input:focus[type=password] ~ .bar:before,
#portal_body.account-management input:focus[type=password] ~ .bar:after {
    width:50%;
}

.bar.invalid:before, .bar.invalid:after {
    content: '';
    height: 3px;
    width: 0;
    bottom: 2px;
    position: absolute;
    background: #72D75E;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all; }

.bar.invalid:before {
    left: 50%; }

.bar.invalid:after {
    right: 50%; }

#portal_body.account-management .bar.invalid {
    animation: shake .5s linear;
    -webkit-animation: shake .5s linear;
}

input[type=text]:focus,
input[type=password]:focus {
    outline: none; }

/* active state */
input:focus[type=text] ~ .bar:before,
input:focus[type=text] ~ .bar:after,
input:focus[type=password] ~ .bar:before,
input:focus[type=password] ~ .bar:after {
    width: 50%;
}