/* 新登录页面样式 - 白色背景简洁风格 */

.new-login-page {
    min-height: 100vh;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 20px 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.login-container {
    width: 100%;
    max-width: 500px;
    padding: 0;
}

/* 顶部头部区域 */
.login-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.header-left {
    flex: 1;
}

.login-title {
    font-size: 32px;
    font-weight: bold;
    color: #000000;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.register-link-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
}

.no-account {
    font-size: 14px;
    color: #000000;
}

.go-register {
    font-size: 14px;
    color: #ff0000;
    text-decoration: none;
}

.go-register:hover {
    text-decoration: underline;
}

.header-right {
    margin-top: 5px;
}

.lang-tag {
    font-size: 14px;
    color: #000000;
}

/* 表单区域 */
.login-form-wrapper {
    margin-bottom: 30px;
}

.form-item-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.form-item-wrapper:last-of-type {
    margin-bottom: 20px;
}

.login-input {
    width: 100%;
    height: 50px;
    padding: 0 60px 0 15px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    background-color: #f5f5f5;
    font-size: 16px;
    color: #000000;
    outline: none;
    box-sizing: border-box;
    transition: all 0.3s;
}

.login-input:focus {
    border-color: #d0d0d0;
    background-color: #ffffff;
}

.login-input::placeholder {
    color: #999999;
}

/* 清除按钮 */
.clear-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #cccccc;
    border-radius: 50%;
    color: #000000;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
    z-index: 10;
}

.clear-btn:hover {
    background-color: #b0b0b0;
}

.clear-btn:active {
    background-color: #999999;
}

/* 密码框包装器 */
.password-wrapper {
    position: relative;
}

/* 联系客服链接 */
.contact-service {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #1890ff;
    text-decoration: none;
    z-index: 5;
    white-space: nowrap;
    line-height: 50px;
}

.contact-service:hover {
    text-decoration: underline;
}

/* 登录按钮 */
.login-btn-wrapper {
    margin-bottom: 20px;
}

.login-btn {
    width: 100%;
    height: 50px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: normal;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s;
}

.login-btn:hover {
    background-color: #333333;
}

.login-btn:active {
    background-color: #1a1a1a;
}

/* 忘记密码 */
.forgot-password-wrapper {
    text-align: center;
}

.forgot-password {
    font-size: 14px;
    color: #999999;
    text-decoration: none;
}

.forgot-password:hover {
    color: #666666;
    text-decoration: underline;
}

/* 响应式设计 */
@media (max-width: 480px) {
    .login-container {
        padding: 30px 20px;
    }

    .login-title {
        font-size: 28px;
    }

    .login-input {
        height: 48px;
        font-size: 16px;
    }

    .login-btn {
        height: 48px;
        font-size: 16px;
    }
}

