﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.main {
    position: fixed;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: url("../images/login-bg.jpg") no-repeat center;
    background-size: cover;
    padding: 0 16.77% 0;
}

.content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 66.46%;
}

.logo {
    width: 180px;
    height: 45px;
}

    .logo img {
        width: 100%;
        height: 100%;
    }

.form {
/*    margin-top: 152px;*/
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-item {
    position: relative;
    width: 410px;
    height: 410px;
    background: rgba(255,255,255,1);
    border-radius: 2px;
    padding: 0 45px;
    flex-shrink: 0;
}

    .form-item::before {
        content: '';
        position: absolute;
        right: -10px;
        top: -10px;
        z-index: -1;
        width: 357px;
        height: 377px;
        background: rgba(23,118,195,1);
        border-radius: 2px;
    }

.myc {
    width: 274px;
    height: 170px;
    margin-right: 16%;
    margin-left: 16%;
    flex-shrink: 0;
}

    .myc img {
        width: 100%;
        height: 100%;
    }

.dl-txt {
    padding-top: 40px;
    font-size: 24px;
    font-weight: 200;
    color: rgba(0,0,0,1);
    line-height: 33px;
    margin-bottom: 42px;
}

    .dl-txt span {
        font-size: 18px;
        font-weight: 200;
    }

.input {
    width: 320px;
    height: 40px;
    background: rgba(255,255,255,1);
    border-radius: 4px;
    border: 1px solid rgba(219,219,219,1);
    position: relative;
    margin-bottom: 15px;
}

    .input img {
        position: absolute;
        left: 10px;
        top: 12px;
        pointer-events: none;
    }

    .input input {
        width: 100%;
        height: 100%;
        border: none;
        padding-left: 36px;
        padding-right: 12px;
        color: #000;
        font-size: 13px;
    }

        .input input::placeholder {
            color: #ABACAB;
        }

.form-item button {
    width: 320px;
    height: 50px;
    line-height: 50px;
    background: rgba(35,124,198,1);
    border-radius: 4px;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255,255,255,1);
    border: none;
    margin-top: 15px;
}
.form-item .layui-btn-disabled, .form-item .layui-btn-disabled:active, .form-item .layui-btn-disabled:hover {
    border: 1px solid #e6e6e6;
    background-color: #FBFBFB;
    color: #C9C9C9;
    cursor: not-allowed;
    opacity: 1;
}
.form-item button.myid-login-btn {
    width: 320px;
    height: 40px;
    line-height: 40px;
    background: #edf3f3;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #237CC6;
    border: none;
    margin-top: 15px;
}
.link-text {
    color: #237CC6 !important;
}
.layui-form-item input.verification-code {
    width: 40px !important;
    height: 40px !important;
    text-align: center !important;
    font-size: 14px !important;
    padding-left: unset !important;
}
.layui-form-item input.verification-code-error {
    border-color:red !important;
}