@charset "utf-8";

.bodyBox {
    box-shadow: 2px 2px 8px #ccc;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 560px;
    background: #eee url(/resources/imgs/login-background.jpg) no-repeat center;
    background-size: 100% auto;
}

.bodyContent {
	margin: -80px auto 0;
    min-height: 500px;
    width: 990px;
}

.logoimg {
	width: auto;
    height: 60px;
    border-radius: 50%;
    opacity: 0.8;
}

.mainBox {
	position: relative;
    text-align: right;
	margin-top: 30px;
	margin-bottom: 20px;
}

.logoBg {
	position: absolute;
    left: 20px;
    top: 30px;
    width: 440px;
}

img.logobgimg {
    width: 100%;
    height: auto;
}

.loginBox {
    width: 360px;
    color: #626262;
    padding: 3rem;
    display: inline-block;
    background-color: #fff;
    box-shadow: 0 0 4px 0px #efefef;
}

.tab-body-item {
    flex-direction: column;
}

.usernameBox, .passwordBox {
	margin-top: 1rem;
	position: relative;
}

input.with-prev-icon {
    padding-left: 40px;
}

.inputBeforeIcon {
    position: absolute;
    left: 6px;
    top: 1px;
    bottom: 0;
    font-size: 24px;
    line-height: 0;
    padding-top: 8px;
}

.inputBeforeIcon > img {
    width: 100%;
    height: 100%;
}

.otherOperation {
    margin-top: 1rem;
    overflow: auto;
    font-size: 0.875rem;
}

.rememberBox {
    float: left;
}

.forgetBox {
    float: right;
}

.btnLoginBox {
    margin-top: 3rem;
}

#btn-login {
	width: 100%;
    height: 2.8rem;
    text-align: center;
    border: none;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
}

.btnSendCode {
    cursor: pointer;
}

.form-control {
    display: block;
    width: 100%;
    /* 原高度 height: 34px; */
    height: 44px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    box-sizing: border-box;
}
.form-control:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);
}
.input-group {
    position: relative;
    display: table;
    border-collapse: separate;
}
.input-group .form-control:first-child, .input-group-addon:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.input-group .form-control, .input-group-addon, .input-group-btn {
    display: table-cell;
    box-sizing: border-box;
}
.input-group .form-control:last-child, .input-group-addon:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.input-group-addon {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #555;
    text-align: center;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.input-group-addon:last-child {
    border-left: 0;
}