﻿body {
    background: #f5f6fa;
}

.login-wrapper {
    height: 100vh;
    margin: 0 auto;
    padding: 0;
    border: 0;
    display: flex;
    align-items: center;
    background-image: url(../images/bg10.jpg);
    background-size: cover;
    background-position: top center;
    position: relative;
}

    .login-wrapper:before {
        position: absolute;
        z-index: 1;
        width: 100%;
        height: 100%;
        display: block;
        left: 0;
        top: 0;
        content: "";
        background: rgba(0, 0, 0, 0.5);
    }

.login-card {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    padding: 25px;
    width: 100%;
    max-width: 420px;
    margin: auto;
    z-index: 999;
}

.login-header1 {
    text-align: center;
    position: relative;
    top: -50px;
    background: rgba(0, 0, 0, 0) linear-gradient(60deg, #4e66ad, #2f4894) repeat scroll 0 0;
    border-radius: 3px;
    padding: 1rem 15px;
    border: 0;
    margin-bottom: -40px;
    box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.2), 0 13px 24px -11px rgba(39, 47, 176, 0.6);
}

    .login-header1 h2 {
        color: #ffffff;
        margin-bottom: 0;
    }

.login-card h4 {
    color: #364f99;
    text-align: center;
}

.login-header1 p {
    margin: 0;
    color: #ffffff;
}

.captcha img {
    border: 1px solid #ccc;
    height: 45px;
    width: 100%;
}

.btn-login {
    width: 100%;
}

.forgot-link {
    margin-top: 10px;
    display: block;
    text-align: center;
}

.footer {
    position: absolute;
    width: 100%;
    background: transparent;
    bottom: 2%;
    color: #fff;
    z-index: 1;
    text-align: center;
}

.refresh i {
    animation: mymove 5s infinite
}

.refresh {
    margin-top: 0.7em;
    text-align: center;
    display: block;
}

@keyframes mymove {
    to {
        transform: rotate(368deg)
    }
}
