html, body {
    background: url(../images/login-bg-line.jpg) repeat-x #0378bd;
    font-family: Helvetica, arial, sans-serif;
    color: white;
    height: 100%;
    margin: 0;
    padding: 0;
    font-size: 24px;
}

#loginFormContainer {
    width: 98%;
    height: 650px;
    background: url(../images/login-bg.jpg) no-repeat;
    padding: 0;
    position: absolute;
}

hgroup { 
    text-align:center;
    margin-top: 1em;
}

h1 {
    font-size: 1.5em;
    margin: 0.5em 0 1.5em 0;
    color: #636363;
    font-weight: 300;
}

.environment {
    color: #d20000;
}

.error {
    color: red;
}

div.error {
    margin: 0.5em 0 1.5em 0;
    text-align: center;
}

form {
    width: 380px;
    margin: 4em auto;
    padding: 2em 2em 2em 2em;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ebebeb;
    box-shadow: rgba(0,0,0,0.15) 0px 1px 1px 0px, rgba(0,0,0,0.1) 0px 1px 2px 0px;
}

.input-wrapper { 
    position: relative;
    margin-bottom: 45px; 
}

.input-wrapper input {
    outline: none;
    z-index: 1;
    position: relative;
    background: none;
    width: 100%;
    padding: 10px 10px 10px 5px;
    border: 0;
    color: #212121;
    font-size: 24px;
    font-weight: 400;
    box-sizing: border-box;
}

.input-wrapper label {
    position: absolute;
    top: 0;
    left: 0;
    color: #999;
    font-size: 24px;
    font-weight: normal;
    pointer-events: none;
    left: 5px;
    top: 10px;
    transition: 0.2s ease;
}

.input-wrapper input:valid ~ label, .input-wrapper input:focus ~ label {
    transform: translate(-12%, -30px) scale(0.75);
    color: #4a89dc;
}

.input-wrapper .bar {
    position: absolute;
    left: 0;
    bottom: 0;
    background: #999;
    width: 100%;
    height: 1px;
}

.input-wrapper .bar::before, .input-wrapper .bar::after {
    content: "";
    position: absolute;
    background: #0378bd;
    width: 0;
    height: 2px;
    transition: 0.2s ease;
}

.input-wrapper .bar::before {
    left: 50%;
}

.input-wrapper .bar::after {
    right: 50%;
}

.input-wrapper input:focus ~ .bar:before, .input-wrapper input:focus ~ .bar:after {
    width: 50%;
}

.button {
    display: inline-block;
    position: relative;
    padding: 12px 24px;
    margin: 0.3em 0 1em 0;
    width: 100%;
    vertical-align: middle;
    font-size: 1em;
    line-height: 1.1em;
    text-align: center;
    cursor: pointer;
    transition: all 0.15s ease;
    color: #fff;
    background: #357bd8;
    text-shadow: 1px 1px 0 rgba(53, 123, 216, 0.5);
    outline: none;
    border: none;
}

.button:focus { 
    background: #1C62BF; 
}

.button:hover { 
    background: #0248A5; 
}

#ripple {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: transparent;
}

#rippleCircle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
}

#ripple.animate #rippleCircle {
    animation: ripple .4s ease-in;
}

@keyframes ripple {
    0% { 
        opacity: 0; 
    }

    25% { 
        opacity: 1; 
    }

    100% {
        width: 200%;
        padding-bottom: 200%;
        opacity: 0;
    }
}
