﻿.root {
    background-color: #f2f2f2;
}

    .root > div {
        width: 480px;
        background-color: white;
        margin-top: 100px;
        margin-bottom: 100px;
        border-radius: 5px;
        margin-left: auto;
        margin-right: auto;
        padding: 20px;
    }

.input {
    height: 50px;
}

    .input input[type='text'] {
        height: 50px;
        background-position: 5px center;
        padding-left: 40px;
        background-repeat: no-repeat;
    }

    .input input[type='password'] {
        height: 50px;
        background-repeat: no-repeat;
        background-position: 5px center;
        padding-left: 40px;
    }

    .input input[id='mobile'] {
        background-image: url(/Images/login-mobile.png);
    }

    .input input[id='code'] {
        float: left;
        background-image: url(/Images/login-code.png);
        width: 290px;
    }

        .input input[id='code'] + img {
            height: 50px;
            width: 140px;
            float: left;
            margin-left: 10px;
        }

    .input input[id='mobileCode'] {
        float: left;
        background-image: url(/Images/login-code.png);
        width: 290px;
    }

        .input input[id='mobileCode'] + input {
            height: 50px;
            width: 140px;
            float: left;
            margin-left: 10px;
            font-size: 18px;
            color: white;
            background-color: #cc0e33;
            border: #cc0e33;
            border-radius: 5px;
        }

    .input input[id='password'] {
        background-image: url(/Images/login-pwd.png);
    }

    .input .checkbox {
        text-align: left;
    }

        .input .checkbox label {
            color: #999999;
        }

    input[type='submit'] {
        height: 60px;
        font-size: 18px;
        color: white;
        width: 100%;
        background-color: #cc0e33;
        cursor: pointer;
        border: 1px solid transparent;
        border-radius: 4px;
    }

    .input a {
        font-size: 14px;
        color: #be0026;
        text-decoration: none;
    }

        .input a:link {
            font-size: 14px;
            color: #be0026;
            text-decoration: none;
        }

        .input a:hover {
            font-size: 14px;
            color: #be0026;
            text-decoration: none;
        }
