﻿body {
    margin: 0;
    padding: 0;
    background: #fff;
    color: #fff;
    font-family: Arial;
    font-size: 13px;
    overflow: hidden;
}

.body {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -40px;
    bottom: -40px;
    width: auto;
    background-image: url(../Images/dash-bg-login.jpg);
    background-size: cover;
    z-index: 0;
}

.login {
    position: absolute;
    top: calc(50% - 150px);
    left: calc(50% - 200px);
    background-image: url(../Images/login.png);
    background-repeat: no-repeat;
    background-size: inherit;
    height: 200px;
    width: 400px;
    padding: 10px;
    padding-left: 40px;
    padding-top: 80px;
    z-index: 2;
}


.login input[type=text] {
        width: 150px;
        height: 24px;
        background: transparent;
        border: 1px solid rgba(255,255,255,0.6);
        border-radius: 2px;
        color: #fff;
        font-family: Arial, 'Exo', sans-serif;
        font-size: 15px;
        font-weight: 400;
        padding: 4px;
}

    .login input[type=date] {
        width: 150px;
        height: 24px;
        background: transparent;
        border: 1px solid rgba(255,255,255,0.6);
        border-radius: 2px;
        color: #fff;
        font-family: Arial, 'Exo', sans-serif;
        font-size: 15px;
        font-weight: 400;
        padding: 4px;
    }

    .login input[type=checkbox] {
        background: transparent;
        border: 1px solid rgba(255,255,255,0.6);
        border-radius: 2px;
        color: #fff;
        font-family: Arial, 'Exo', sans-serif;
        font-size: 15px;
        font-weight: 400;
        padding: 4px;
    }

    .login input[type=password] {
        width: 150px;
        height: 24px;
        background: transparent;
        border: 1px solid rgba(255,255,255,0.6);
        border-radius: 2px;
        color: #fff;
        font-family: Arial, 'Exo', sans-serif;
        font-size: 15px;
        font-weight: 400;
        padding: 4px;
        margin-top: 10px;
    }

    .login input[type=submit] {
        width: 120px;
        height: 40px;
        background: #fff;
        border: 1px solid #fff;
        cursor: pointer;
        border-radius: 2px;
        color: #01481D;
        font-family: Arial, 'Exo', sans-serif;
        font-size: 15px;
        font-weight: 400;
        padding: 2px;
        margin-left: 48px;
        margin-top: 115px;
    }

        .login input[type=submit]:hover {
            opacity: 0.8;
        }

        .login input[type=submit]:active {
            opacity: 0.6;
        }

    .login input[type=text]:focus {
        outline: none;
        border: 1px solid rgba(255,255,255,0.9);
    }

    .login input[type=password]:focus {
        outline: none;
        border: 1px solid rgba(255,255,255,0.9);
    }

    .login input[type=button]:focus {
        outline: none;
    }

.footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    height: 20px;
    left: calc(50%-250);
    z-index: 2;
}

::-webkit-input-placeholder {
    color: rgba(255,255,255,0.6);
}

::-moz-input-placeholder {
    color: rgba(255,255,255,0.6);
}

a {
    text-decoration: none;
    color: #ffffff;
}


    a:link {
        text-decoration: none;
        color: #ffffff;
    }


    a:visited {
        text-decoration: none;
        color: #ffffff;
    }

    a:focus {
        color: #ffffff;
    }

    a:hover {
        color: #ffffff;
    }

    a:active {
        text-decoration: none;
        color: #ffffff;
    }
