﻿body {
    background: url(/Content/img/login-bg.jpg) no-repeat;
    background-size: cover;
}

.bord {
    width: 400px;
    height: 480px;
    padding: 20px 20px;
    background-color: rgba(13, 23, 32, 0.8);
    margin: auto;
    position: absolute;
    left: 70%;
    top: 40%;
    margin: -250px 0 0 -200px;
    border-radius: 15px;
}

    .bord .logo {
        width: 100%;
        height: 80px;
        background: url(../../Content/img/login.png) no-repeat center;
    }

.input-box {
    width: 96%;
    height: 40px;
    margin: 40px auto;
    transition: 0.4s all ease;
    position: relative;
}

    .input-box label {
        position: absolute;
        left: 10%;
        height: 40px;
        line-height: 40px;
        color: #757575;
        width: 16%;
        text-align-last: justify;
    }

    .input-box .authcode {
        position: absolute;
        left: 105px;
        top: 10px;
    }
        label {
    display: inline-block;
    margin-bottom: .5rem;
}

.input-block {
    padding-left: 20px;
    width: 100%;
    height: 40px;
    display: block;
    margin: auto;
    border: none;
    font-size: 14px;
    background-color: #22272b;
    outline: none;
    color: white;
}

    .input-block[type='password'] {
        background-image: url("../img/pwd-ico.png");
        background-repeat: no-repeat;
        background-position-y: center;
        background-position-x: 95%;
    }

    .input-block[name='userName'] {
        background-image: url("../img/user-ico.png");
        background-repeat: no-repeat;
        background-position-y: center;
        background-position-x: 95%;
    }

.button-block:hover {
    box-shadow: 0 0 5px 0 #1ba5c4;
}

.button-block {
    cursor: pointer;
    display: block;
    margin: auto;
    background-color: #4dadd3;
    width: 65px;
    height: 30px;
    border: none;
    border-radius: 4px;
    color: white;
    transition: 0.4s ease all;
}

    .button-block:hover {
        box-shadow: 0 0 5px 0 #1ba5c4;
    }

.checktoken-box {
    width: 96%;
    height: 40px;
    margin: 40px auto;
}

