﻿* {
    padding: 0;
    margin: 0;
    color: #ccc;
    font-size: 12px;
}

body,
html {
    width: 100%;
    height: 100%;
}

.wrapper {
    width: 100%;
    height: 100%;
    background-color: rgb(14, 14, 14);
    position: relative;
}

    .wrapper .header {
        width: 100%;
        height: 40px;
        background-color: rgb(99, 98, 98);
    }

        .wrapper .header > .btn {
            height: 40px;
            padding: 0 10px;
            float: right;
            margin-right: 50px;
            cursor: pointer;
            border: none;
            outline: none;
            background-color: rgb(99, 98, 98);
        }

    .wrapper .content {
        position: absolute;
        display: flex;
        justify-content: center;
        border-radius: 5px;
        height: 340px;
        width: 680px;
        background-color: rgb(52, 56, 61);
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
    }

.content #login-form {
    display: flex;
    align-items: center;
}

.content .login-content {
    position: relative;
    height: 144px;
    width: 295px;
}

    .content .login-content .login-input {
        border: none;
        width: 100%;
        height: 45px;
        border-radius: 5px;
        margin-bottom: 2px;
        padding-left: 15px;
        background-color: rgb(14, 14, 14);
        font-weight: bold;
        box-sizing: border-box;
    }

    .content .login-content .btn {
        border: none;
        outline: none;
        background-color: transparent;
        cursor: pointer;
        color: #ccc;
    }

    .content .login-content .login-btn {
        position: absolute;
        background-color: rgb(14, 14, 14);
        height: 65px;
        width: 65px;
        border-radius: 50%;
        top: 50%;
        margin-top: -34.5px;
        right: -43px;
        border: 6px solid rgb(52, 56, 61);
    }

        .content .login-content .login-btn i {
            font-size: 20px;
            color: #42474C;
        }

        .content .login-content .login-btn:hover i {
            color: #A3A9B3;
        }
/*验证码*/
.code-wrap {
    width: 100%;
    display: flex;
}

    .code-wrap .login-input.code {
        flex: 1;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .code-wrap .code-show {
        height: 45px;
        width: 100px;
        color: #f15a22;
        letter-spacing: 4px;
        text-align: center;
        font-size: 18px;
        font-weight: bold;
        background-color: #0E0E0E;
        border: none;
        border-top-right-radius: 5px;
        border-bottom-right-radius: 5px;
        cursor: pointer;
    }
