.right-operate-box{
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 10px;
}
.right-operate-box .login-btn-page{
    background: none;
    border: 1px solid #fff;
    color: #fff;
    width: 60px;
    height: 36px;
}





.login-box{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.login-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    padding: 30px;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: #999;
}

.login-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
}

.input-group {
    margin-bottom: 20px;
    position: relative;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #666;
}

.input-group input {
    width: 100%;
    padding: 12px 15px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.input-group input:focus {
    border-color: #1890ff;
    outline: none;
}

.get-code-btn {
    position: absolute;
    right: 5px;
    top: 33px;
    background-color: #1890ff;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.get-code-btn:hover {
    background-color: #40a9ff;
}

.get-code-btn.disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.login-btn {
    width: 100%;
    padding: 12px;
    background-color: #1890ff;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.login-btn:hover {
    background-color: #40a9ff;
}

.login-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.error-msg {
    color: #f5222d;
    font-size: 12px;
    margin-top: 5px;
    height: 18px;
}

.success-msg {
    color: #52c41a;
    font-size: 14px;
    text-align: center;
    margin-top: 20px;
    display: none;
}
