﻿.loginBox {
    position: relative;
    text-align: center;
    background: rgba(0,0,0,0.4);
    border-radius: 15px;
    padding: 20px 80px 50px;
    margin: 5% auto 0;
    overflow: hidden;
}

.loginBox .footer {
    position: absolute;
    background: rgba(0,0,0,0.45);
    width: 100%;
    left: 0;
    bottom: 0;
    color: #e5e5e5;
    padding-left: 1px;
}

.loginBox .footer div {
    position: relative;
    display: inline-block;
    text-align: center;
    color: #d4dbe1;
    -webkit-transition: 300ms ease;
    transition: 300ms ease;
    width: calc(100% / 5 - 10px);
    font-size: 12px;
    padding: 2px 0;
}

.loginBox .footer div a {
    color: #b4b6b7;
    font-size: 12px;
}

.loginBox .footer div a:hover {
    text-decoration: none;
    color: #0366d6;
}

.loginBox .footer div.tel {
    background: #3334348f;
    border-radius: 30px;
    font-size: 11px;
    margin-bottom: 6px;
    vertical-align: top;
}



@media (max-width: 767px) {
    .loginBox {
        padding: 25px;
        min-height: 540px;
    }

    .captcha-group input {
        min-width: unset !important;
        width: 100%;
        max-height: 40px;
        padding: 8px;
        opacity: 1;
        float: right;
    }

    .loginBox .footer div {
        width: 45%;
    }
}

@media (min-width:977px) and (max-width:1199px) {
    .loginBox {
        padding: 45px 52px 50px;
    }
}