body {
    background-image: var(--bg-image);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-color: #f8fafc;
}
.main {
    background-color: #00000080 !important;
}
.site-footer {
    margin-top: 0;
}
.login-page {
    position: relative;
    z-index: 0;
    width: 1200px;
    max-width: 92%;
    margin: 0 auto;
    height: 85vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.login-left {
    color: #fff;
    margin-left: 70px;
}
.login-logo {
    width: 179px;
    display: block;
    margin-bottom: 15px;
}
.login-slogan {
    font-size: 19px;
    font-weight: 300;
    text-shadow: 0 2px 8px rgba(0,0,0,.35);
}
.login-box {
    width: 460px;
    background: #fff;
    border-radius: 8px;
    padding: 45px;
    box-shadow: 0 20px 60px rgba(0,0,0,.28);
}
.login-title {
    text-align: center;
    font-size: 26px;
    color: #333;
    font-weight: bold;
    margin-bottom: 38px;
}
.login-form-item {
    position: relative;
    margin-bottom: 22px;
}
.login-form-item input {
    width: 100%;
    height: 56px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding-left: 20px;
    font-size: 15px;
    transition: .2s;
}
.login-form-item input:focus {
    outline: none;
    border-color: #3b82f6;
}
.captcha-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.captcha-item input {
    flex: 1;
    padding-left: 20px;
}
.captcha-img {
    width: 120px;
    height: 56px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    object-fit: cover;
    flex-shrink: 0;
    background: #fff;
}
.captcha-img a {
    color: #666;
    font-size: 12px;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    text-align: center;
}
.captcha-img a:hover {
    color: #00b578;
}
.captcha-img img {
    width: 120px;
    height: 56px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    object-fit: cover;
    flex-shrink: 0;
    background: #fff;
}
.login-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    font-size: 14px;
    color: #666;
}
.login-option label {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}
.login-option a {
    color: #409EFF;
    text-decoration: none;
}
.login-option a:hover {
    text-decoration: underline;
}
.login-btn {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 4px;
    background: #25b864;
    color: #fff;
    font-size: 17px;
    cursor: pointer;
    transition: .25s;
}
.login-btn:hover {
    background: #1fa557;
}
.register {
    margin-top: 35px;
    text-align: center;
    color: #666;
    font-size: 14px;
}
.register a {
    color: #409EFF;
    text-decoration: none;
}
.register a:hover {
    text-decoration: underline;
}