@charset "UTF-8";
:root {
    --el-color-primary: #2563eb;
    --el-color-primary-light-3: #3b82f6;
    --el-color-primary-light-5: #60a5fa;
    --el-color-primary-light-7: #93c5fd;
    --el-color-primary-light-8: #bfdbfe;
    --el-color-primary-light-9: #dbeafe;
    --el-bg-color-page: #f1f5f9;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--el-font-family), serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--el-text-color-primary);
}

ul, ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--el-text-color-primary);
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

input,
textarea,
select,
button {
    border: none;
    outline: none;
}

button {
    cursor: pointer;
}

html, body {
    height: 100%;
    width: 100%;
    background-color: var(--color-white);
}

body {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.client-auth {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 32px 0;
    overflow: hidden auto;
}

.client-auth-wrap {
    width: 100%;
    max-width: 768px;
}

.client-auth-body {
    display: flex;
    justify-items: center;
    position: relative;
    width: 100%;
    height: auto;
    margin: 32px auto 48px;
    box-sizing: border-box;
    background-color: var(--el-color-white);
}

.client-auth-body::before {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.6);
    height: 80px;
    content: "";
    left: 16px;
    right: 16px;
    bottom: -16px;
    z-index: -1;
}

.client-auth-body::after {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.3);
    height: 80px;
    content: "";
    left: 32px;
    right: 32px;
    bottom: -32px;
    z-index: -1;
}

.client-auth-body-img {
    display: none;
    align-items: center;
    width: 100%;
    padding: 24px;
    border-right: var(--el-border);
}

.client-auth-body-img img {
    display: block;
    width: 100%;
    height: auto;
}

.client-auth-body-form {
    width: 100%;
    padding: 24px;
}

.client-auth-body-form-logo {
    width: 100%;
    margin-bottom: 22px;
}

.client-auth-body-form-logo h1 {
    font-size: 32px;
    font-weight: bold;
    line-height: 1;
    color: var(--el-color-primary);
    text-align: center;
    margin-top: 8px;
}

.client-auth-body-form-logo img {
    display: block;
    width: auto;
    height: 48px;
    margin: 0 auto;
    max-width: 100%;
    object-fit: contain;
}

.client-auth-body-form .el-input-group__prepend, .client-auth-body-form .el-input-group__append {
    background-color: var(--el-color-white);
    padding: 0;
}

.client-auth-body-form .el-checkbox {
    height: auto;
}

.client-auth-body-form .el-button {
    width: 100%;
}

.client-auth-body-form .captcha {
    height: 38px;
    width: 120px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4rem;
    padding: 4px;
}

.client-auth-body-form .captcha img {
    display: block;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.client-auth-body-form .get-code {
    min-width: 120px;
    color: var(--el-color-primary) !important;
    padding: 0 16px;
    margin: 0;
}

.client-auth-body-form .get-code.is-disabled {
    color: var(--el-color-info) !important;
}

.client-auth-body-form .text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: auto;
    font-size: 14px;
    line-height: 1;
    color: var(--el-text-color-primary);
}

.client-auth-body-form .text a:hover {
    color: var(--el-color-warning);
}

@media (min-width: 768px) {
    .client-auth-body-img {
        display: flex;
        width: 50%;
    }

    .client-auth-body-form {
        width: 50%;
    }
}

.client-auth-footer {
    display: flex;
    justify-content: center;
    line-height: 24px;
}

.client-auth-footer a {
    padding: 0 8px;
    color: #ffffff;
}

.client-auth-footer span {
    margin: 0 8px;
    color: #ffffff;
}