.container {
    min-height:calc(100vh - 393px);
    padding-bottom:0;
}
.login-container {
    margin:0 auto;
    padding:100px 0;
}
.login-container > .title {
    text-align:center;
}
.login-container > .title h2 {
    font-size: 42px;
    font-weight: 400;
    color:#333;
    line-height:42px;
    margin-bottom:45px;
}
.login-container > .title ul {
    display: inline-block;
    padding-bottom:40px;
    border-bottom:1px solid #c3cfd9;
}
.login-container > .title li {
    position:relative;
    display: inline-block;
    margin: 0 15px;
    padding-right:40px;
    color:#777;
    font-size:18px;
    line-height:28px;
}
.login-container > .title li span {
    display: inline-block;
    width: 28px;
    height:28px;
    border-radius: 50%;
    background-color: #D7D7D7;
    color:#fff;
    font-weight: bold;
    font-size:16px;
    margin-right:4px;
}
.login-container > .title li.on span {
    background-color: #ffd45d;
}
.login-container > .title li.on {
    color:#ffd45d;
    font-weight: bold;
}
.login-container > .title li:after {
    position:absolute;
    top:50%;
    transform: translateY(-50%);
    right:0;
    content:'··';
    font-size:40px;
    letter-spacing: -12px;
    line-height:28px;
    color:#D7D7D7;
    font-weight:normal;
}
.login-container > .title li.on:after {
    color:#ffd45d;
}
.login-container > .title li:last-child {
    margin-right:15px;
    padding-right:0;
}
.login-container > .title li:last-child:after {
    display: none;
}
.login-container > .title p {
    margin-top:50px;
    font-size:20px;
    color:#666;
    line-height:1.5;
}
.login-container p.info {
    display:block;
    text-align:center;
    font-size:16px;
    margin:15px 0;
    color:#DF592A;
}
.login-wrapper {
    width:330px;
    margin:0 auto;
}
.login-container label {
    display: block;
    width: 100%;
    margin: 0 0 2px;
    border-bottom: 1px solid #c3cfd9;
    color: #8F8F91;
    border-radius: 5px;
}
.login-container input[type=text],
.login-container input[type=password] {
    width: 100%;
    height: 58px;
    line-height: 58px;
    padding: 0 10px;
    border: 0 none;
    color: #959ea6;
    font-size: 16px;
    background: #fff;
}
.login-container label:nth-child(2) {
    margin-bottom:15px;
}
.login-container input[type=text]::placeholder,
.login-container input[type=password]::placeholder {
    color:#c1c1c1;
}
.login-container input[type=text]:focus,
.login-container input[type=password]:focus {
    outline: none;
    border: 1px solid #ffd45d;
}
html.type01 .login-container input[type=text]:focus,
html.type01 .login-container input[type=password]:focus {
    outline: none;
    border: 1px solid #cb4335;
}
html.type02 .login-container input[type=text]:focus,
html.type02 .login-container input[type=password]:focus {
    outline: none;
    border: 1px solid #3292c4;
}
.login-container .findAccount {
    display: flex;
    margin-top:25px;
    justify-content: center;
}
.login-container .findAccount a {
    font-size:14px;
    color:#777;
    border-bottom: 1px solid #c3cfd9;
    letter-spacing: -1px;
}
.login-container .findAccount li:first-child {
    padding-right:15px;
}
.login-container .findAccount li:last-child {
    position:relative;
    padding-left:15px;
}
.login-container .findAccount li:last-child::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 14px;
    background-color: #c3cfd9;
    transform: translateY(-50%);
}
.login-container .loginBtn {
    display: block;
    width:100%;
    height: 60px;
    margin-top:30px;
    border: 1px solid #ffd45d;
    text-align: center;
    line-height: 58px;
    font-size: 18px;
    background: #ffd45d;
    color: #fff;
    font-weight: bold;
    cursor:pointer;
    border-radius: 3px;
}
html.type01 .login-container .loginBtn {
    display: block;
    width:100%;
    height: 60px;
    margin-top:30px;
    border: 1px solid #fadbd8;
    text-align: center;
    line-height: 58px;
    font-size: 18px;
    background: #fadbd8;
    color: #cb4335;
    font-weight: bold;
    cursor:pointer;
    border-radius: 3px;
}
html.type02 .login-container .loginBtn {
    display: block;
    width:100%;
    height: 60px;
    margin-top:30px;
    border: 1px solid #ddf3ff;
    text-align: center;
    line-height: 58px;
    font-size: 18px;
    background: #ddf3ff;
    color: #3292c4;
    font-weight: bold;
    cursor:pointer;
    border-radius: 3px;
}
.login-container .joinBtn {
    display: block;
    height: 60px;
    margin-top:20px;
    border: 1px solid #ffd45d;
    text-align: center;
    line-height: 58px;
    font-size: 18px;
    background: #fff;
    color: #ffd45d;
    font-weight: bold;
    border-radius: 3px;
}
.login-container input[type=text].error,
.login-container input[type=password].error{
    background-color: rgba(223,89,42,.05);
}

.parentJoinModal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}
.parent-join-modal-content {
    width: 600px;
    background-color: white;
    margin: 10% auto;
    padding: 50px 50px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.parent-join-modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.parent-join-modal-closehover,
.parent-join-modal-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.parent-join-modal-content > h2 {
    margin-bottom: 20px;
    color: #666;
    font-size: 24px;
    text-align: center;
    font-weight: bold;
}
.parent-join-modal-content > p {
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 18px;
    color: #666;
    line-height: 1.4;
    text-align: center;
}
.parent-join-modal-content > a {
    display: inline-block;
    width: 100%;
    height: 48px;
    margin-left: 12px;
    line-height: 48px;
    border-radius: 5px;
    background: #ffd45d;
    font-size: 19px;
    color: #fff;
    font-weight: bold;
    text-align:center;
}


@media (max-width: 1000px) {
    .login-container{
        width:90%;
        margin:0 auto;
    }
    .login-container > .title p {
        width:96%;
        margin:0 auto;
    }

    .login-container .title li {
        display: inline-block;
        padding-right: 5px;
        margin: 0px 4px;
    }

    .login-container .title ul {
        width: 95%;
    }

    .login-container > .title li:after {
        display: none;
    }
    .login-container > .title li.on:after {
        display: none;
    }
    .parent-join-modal-content {
        width: 100%;
        background-color: white;
        margin: 10% auto;
        padding: 50px 0;
        border: 1px solid #ddd;
        border-radius: 5px;
    }
    .parent-join-modal-content > a {
        display: inline-block;
        width: 100%;
        height: 48px;
        margin-left: 0px;
        line-height: 48px;
        border-radius: 5px;
        background: #ffd45d;
        font-size: 19px;
        color: #fff;
        font-weight: bold;
        text-align:center;
    }
}