html,
body{
    height: 100%;
    min-height: 100vh;
}
/*
body{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: #fff;
}*/

.app-wrapper{
    height: 100%;
    width: 100%;
    display: table;
    padding: 30px 15px;
}
.app-wrapper .content-wrapper{
    display: table-cell;
    height: 100%;
    vertical-align: middle;
}

/*
.app-wrapper .content-wrapper#login-content-wrapper{
    width: 100%;
    height: auto;
    min-height: 0;
    margin-bottom: 100px;
}
*/

/* Login header */

/* Login box */
#login-card{
    max-width: 600px;
    margin: auto;
}
#login-card a{
    color: #32638e;
}
#login-card a:hover{
    text-decoration: underline;
    cursor: pointer;
}
#login-card .card-header{
    background-color: transparent;
    color: #fff;
    justify-content: center;
    font-size: 18px;
    padding: 4px 12px;
}
#login-card .card-header img{
    max-width: 300px;
    margin: 24px 0 12px;
}

#login-card .card-body .intro-form{
    font-weight: bold;
    text-align: center;
    margin-bottom: 1.4em;
}

#login-card .nice-form{
    width: 100%;
    max-width: 420px;
    margin: auto;
}
#login-card .card-body .request-password{
    font-size: 13px;
    margin-top: 4px;
}
#login-card .card-body .request-password a{
    color: #32638e;
}

#login-card .card-body .request-account{
    font-size: 13px;
    text-align: center;
}

/* Login nice labels and placeholder */
.nice-form .form-label-group {
    position: relative;
    margin-bottom: 1rem;
}

.nice-form .form-label-group > input,
.nice-form .form-label-group > label {
    height: 3.125rem;
    padding: .75rem;
}

.nice-form .form-label-group > label {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    margin-bottom: 0; /* Override default `<label>` margin */
    line-height: 1.5;
    color: #495057;
    pointer-events: none;
    cursor: text; /* Match the input under the label */
    border: 1px solid transparent;
    border-radius: .25rem;
    transition: all .1s ease-in-out;
}

.nice-form .form-label-group input::-webkit-input-placeholder,
.nice-form .form-label-group input:-ms-input-placeholder,
.nice-form .form-label-group input::-ms-input-placeholder,
.nice-form .form-label-group input::-moz-placeholder,
.nice-form .form-label-group input::placeholder {
    color: transparent;
}

.nice-form .form-label-group input:not(:placeholder-shown) {
    padding-top: 1.25rem;
    padding-bottom: .25rem;
}

.nice-form .form-label-group input:not(:placeholder-shown) ~ label {
    padding-top: .25rem;
    padding-bottom: .25rem;
    font-size: 12px;
    color: #777;
}

.nice-form .btn.btn-primary{
    background-color: #32638e;
    border-color: #32638e;
}

/* Fallback for Edge
-------------------- */
@supports (-ms-ime-align: auto) {
    #login-form .form-label-group > label {
        display: none;
    }
    #login-form .form-label-group input::-ms-input-placeholder {
        color: #777;
    }
}

/* Fallback for IE
------------------ */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    #login-form .form-label-group > label {
        display: none;
    }
    #login-form .form-label-group input:-ms-input-placeholder {
        color: #777;
    }
}

#signup-form .submit-wrapper{
    max-width: 420px;
    margin: auto;
    margin-top: 2em;
}

#login-card .card-footer{
    text-align: center;
    background-color: #6ea7da;
    margin: 0;
    color: #fff;
    font-size: 13px;
    padding: 4px 12px;
}
#login-card .card-footer a{
    color: #fff;
}